<?php
// PHP변수 스크립트에서 쉽게 사용하기
function setScriptVar($name, $obj) {
global $script;
$script = "<script language='javascript'>";
if(is_object($obj)) {
$script .= "var $name = new Array();";
factory($name, $obj,'object');
} elseif(is_array($obj)) {
$script .= "var $name = new Array();";
factory($name, $obj,'array');
} else {
if(is_numeric($obj)) $script .= "var $name = $obj;";
else $script .= "var $name = '$obj';";
}
$script .= "</script>";
echo $script;
}
function factory($name, $data, $type = NULL) {
global $script;
foreach($data as $key => $val) {
if(is_object($val)){
factory($name.".".$key, $val, 'object');
} elseif(is_array($val)){
if($type == 'array') {
$script .= $name."[".$key."] = new Array();";
factory($name."[".$key."]", $val, 'array');
} else {
$script .= $name.".".$key." = new Array();";
factory($name.".".$key, $val, 'array');
}
} elseif(preg_match("/[a-zA-Z_][a-zA-Z0-9_]*/",$key) && $type == 'object') {
if(is_numeric($val)) $script .= $name.".".$key."=".$val.";";
else $script .= $name.".".$key."='".$val."';";
} elseif($type == 'array') {
if(!is_numeric($key)) $key = "'".$key."'";
if(is_numeric($val)) $script .= $name."[".$key."]=".$val.";";
else $script .= $name."[".$key."]='".$val."';";
}
}
}
// 사용법 setScriptVar(변수명지정,PHP변수);
// 일반변수
$market = "I Like Fruit!";
setScriptVar("market", $market);
// 배열
$fruit = array('Apple','Pineapple',array('Tomato','Banana'));
setScriptVar("fruit", $fruit);
// 오브젝트와 배열
$list->like = 'Pineapple';
$list->hate = 'Tomato';
$list->buy = array('Apple','Pineapple');
setScriptVar("list", $list);
// 변수타입
$num = array(100,'200');
setScriptVar("num",$num);
?>
<script>
//alert(market); // I Like Fruit!
//alert(fruit[0]+"/"+fruit[2][0]); // Apple/Tomato
//alert(list.like+"/"+list.buy[0]); // Pineapple/Apple
//alert(num[0] + 10); // 110
//alert(num[1] + 10); // 20010
</script>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 6630 |
차가운바람
|
11년 전 | 1159 | |
| 6629 | 11년 전 | 1153 | ||
| 6628 |
put777
|
11년 전 | 640 | |
| 6627 |
|
12년 전 | 692 | |
| 6626 | 12년 전 | 1614 | ||
| 6625 |
|
12년 전 | 714 | |
| 6624 |
미켈란젤로의왼손
|
12년 전 | 474 | |
| 6623 |
|
12년 전 | 1039 | |
| 6622 | 12년 전 | 1374 | ||
| 6621 |
차가운바람
|
12년 전 | 626 | |
| 6620 | 12년 전 | 730 | ||
| 6619 |
|
12년 전 | 963 | |
| 6618 | 12년 전 | 1738 | ||
| 6617 | 12년 전 | 637 | ||
| 6616 |
차가운바람
|
12년 전 | 887 | |
| 6615 | 12년 전 | 2853 | ||
| 6614 | 12년 전 | 613 | ||
| 6613 |
강명구베드로
|
12년 전 | 526 | |
| 6612 |
|
12년 전 | 424 | |
| 6611 | 12년 전 | 1202 | ||
| 6610 | 12년 전 | 1017 | ||
| 6609 | 12년 전 | 3678 | ||
| 6608 |
|
12년 전 | 827 | |
| 6607 | 12년 전 | 690 | ||
| 6606 | 12년 전 | 565 | ||
| 6605 | 12년 전 | 449 | ||
| 6604 | 12년 전 | 969 | ||
| 6603 |
geektoo
|
12년 전 | 689 | |
| 6602 | 12년 전 | 834 | ||
| 6601 | 12년 전 | 358 | ||
| 6600 | 12년 전 | 400 | ||
| 6599 | 12년 전 | 533 | ||
| 6598 | 12년 전 | 932 | ||
| 6597 | 12년 전 | 925 | ||
| 6596 | 12년 전 | 405 | ||
| 6595 | 12년 전 | 777 | ||
| 6594 | 12년 전 | 4572 | ||
| 6593 | 12년 전 | 2578 | ||
| 6592 | 12년 전 | 826 | ||
| 6591 | 12년 전 | 581 | ||
| 6590 |
|
12년 전 | 1386 | |
| 6589 | 12년 전 | 755 | ||
| 6588 |
GINUSSOFT
|
12년 전 | 5125 | |
| 6587 | 12년 전 | 6206 | ||
| 6586 | 12년 전 | 1041 | ||
| 6585 | 12년 전 | 802 | ||
| 6584 | 12년 전 | 450 | ||
| 6583 |
|
12년 전 | 982 | |
| 6582 | 12년 전 | 865 | ||
| 6581 | 12년 전 | 838 | ||
| 6580 | 12년 전 | 615 | ||
| 6579 |
알랑가몰라
|
12년 전 | 919 | |
| 6578 | 12년 전 | 1324 | ||
| 6577 | 12년 전 | 1496 | ||
| 6576 |
경dragon
|
12년 전 | 763 | |
| 6575 | 12년 전 | 1876 | ||
| 6574 | 12년 전 | 677 | ||
| 6573 | 12년 전 | 973 | ||
| 6572 |
|
12년 전 | 1658 | |
| 6571 |
CTOMAN
|
12년 전 | 1953 | |
| 6570 | 12년 전 | 1725 | ||
| 6569 | 12년 전 | 1883 | ||
| 6568 | 12년 전 | 2399 | ||
| 6567 | 12년 전 | 1025 | ||
| 6566 |
lainfox
|
12년 전 | 1525 | |
| 6565 | 12년 전 | 3653 | ||
| 6564 |
제주프라이스
|
12년 전 | 1530 | |
| 6563 | 12년 전 | 1574 | ||
| 6562 |
프로프리랜서
|
12년 전 | 1344 | |
| 6561 |
프로프리랜서
|
12년 전 | 964 | |
| 6560 |
프로프리랜서
|
12년 전 | 1216 | |
| 6559 |
프로프리랜서
|
12년 전 | 1133 | |
| 6558 |
프로프리랜서
|
12년 전 | 1347 | |
| 6557 |
프로프리랜서
|
12년 전 | 1965 | |
| 6556 |
프로프리랜서
|
12년 전 | 1515 | |
| 6555 |
프로프리랜서
|
12년 전 | 1357 | |
| 6554 |
프로프리랜서
|
12년 전 | 3884 | |
| 6553 |
프로프리랜서
|
12년 전 | 1504 | |
| 6552 | 12년 전 | 840 | ||
| 6551 |
왕초보sasa
|
12년 전 | 1534 | |
| 6550 |
왕초보sasa
|
12년 전 | 628 | |
| 6549 |
왕초보sasa
|
12년 전 | 901 | |
| 6548 | 12년 전 | 1300 | ||
| 6547 | 12년 전 | 1184 | ||
| 6546 | 12년 전 | 5156 | ||
| 6545 | 12년 전 | 2514 | ||
| 6544 |
AnnieK
|
12년 전 | 1775 | |
| 6543 |
베르무트7
|
12년 전 | 623 | |
| 6542 |
오늘도망했다
|
12년 전 | 2231 | |
| 6541 | 12년 전 | 817 | ||
| 6540 | 12년 전 | 1129 | ||
| 6539 | 12년 전 | 846 | ||
| 6538 |
senseme
|
12년 전 | 3368 | |
| 6537 | 12년 전 | 776 | ||
| 6536 | 12년 전 | 3663 | ||
| 6535 | 12년 전 | 1344 | ||
| 6534 | 12년 전 | 1623 | ||
| 6533 | 12년 전 | 2241 | ||
| 6532 |
냐옹이사범
|
12년 전 | 2305 | |
| 6531 | 12년 전 | 565 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기