2016-08-10 3 views
-5

이 나의 시도는 어쩌면 잘못된 자바 스크립트로 PHP 코드에서 자바 스크립트 코드,PHP 배열 데이터 테이블을 자바 스크립트로 변환하는 방법?

var tabledata = [ 
 
\t {id:1, name:"Oli Bob", age:"12", gender:"male", height:1, col:"red", dob:"", cheese:1, lucky_no:5}, 
 
\t {id:2, name:"Mary May", age:"1", gender:"female", height:2, col:"blue", dob:"14/05/1982", cheese:true, lucky_no:10}, 
 
\t {id:3, name:"Christine Lobowski", age:"42", height:0, col:"green", dob:"22/05/1982", cheese:"true", lucky_no:12}, 
 
\t {id:4, name:"Brendon Philips", age:"125", gender:"male", height:1, col:"orange", dob:"01/08/1980", lucky_no:18}, 
 
\t {id:5, name:"Margret Marmajuke", age:"16", gender:"female", height:5, col:"yellow", dob:"31/01/1999", lucky_no:33}, 
 
\t {id:6, name:"Frank Harbours", age:"38", gender:"male", height:4, col:"red", dob:"", cheese:1, lucky_no:2}, 
 
\t {id:7, name:"Jamie Newhart", age:"23", gender:"male", height:3, col:"green", dob:"14/05/1985", cheese:true, lucky_no:63}, 
 
\t {id:8, name:"Gemma Jane", age:"60", height:0, col:"red", dob:"22/05/1982", cheese:"true", lucky_no:72}, 
 
\t {id:9, name:"Emily Sykes", age:"42", gender:"female", height:1, col:"maroon", dob:"11/11/1970", lucky_no:44}, 
 
\t {id:10, name:"James Newman", age:"73", gender:"male", height:5, col:"red", dob:"22/03/1998", lucky_no:9}, 
 
]; 
 
this is my php code : 
 

 
<?php $arr1 = array (
 
array('id'=>'1', 'name'=>'Oli Bob','age'=>'12', 'gender'=>'male','height'=>'1','col'=>'red','dob'=>'', 'cheese'=>'1','lucky_no'=>'5'), 
 
array('id'=>'2', 'name'=>'Mary May','age'=>'1', 'gender'=>'female','height'=>'2','col'=>'blue','dob'=>'14/05/1982', 'cheese'=>'true','lucky_no'=>'10') 
 
);?> 
 

 
and javascript : 
 

 
var tabledata = "<?php json_encode($arr1);?>"; 
 

 
Please Help...? :(

내 qustion입니다 ..! 자바 스크립트 코드는 첫 번째 게시물과 같은 고정 코드입니다.

+0

정답은 "다릅니다."입니다. –

+0

나는 그들을 동료로 변경했습니다. 감사합니다 – Mike

답변

0

나는 당신이 json_encode을 찾고 있다고 가정하지만 질문은 매우 모호합니다.

편집 : 이제 조금 업데이트했습니다. 첫째, PHP는 출력의 어떤 종류를 가질 필요가 있으며, 에코없이, 또는 뭔가 비슷한 자바 스크립트

var tabledata = "<?php echo json_encode($arr1); ?>"; 

을 시도, 당신은 할 수 없습니다.

+0

이것은 대답이 아닙니다 ... O_O –

+0

네, 죄송합니다. – Mike