728x90
<?php $str = 'hello'; $arr = array('my', 'friend'); ?> <script> var str = '<?= $str ?>'; var arr = <?= json_encode($arr) ?>; console.log(str); // hello console.log(arr); // ["my","friend"] </script>
728x90
반응형
'개발 > php' 카테고리의 다른 글
php 파일 복사 (0) | 2018.07.23 |
---|---|
php JSON_PRETTY_PRINT (0) | 2018.07.23 |
Cannot use object of type stdClass as array (0) | 2018.07.21 |
php 서버에 json 파일 쓰기 (0) | 2018.07.20 |
php 파일 존재 유무 확인 (0) | 2018.07.20 |