php中json_encode用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php中json_encode用法相关的知识,希望对你有一定的参考价值。

 <?php
//执行数据库操作,得到数组多张图片
$_arr = array(‘1.jpg‘,‘2.jpg‘,‘3.jpg‘,‘4.jpg‘);

//输出到浏览器端
echo ‘<script>var picture_array = ‘ . json_encode($_arr) . ‘; </script>‘;

?>

<script>
  //前端处理照片列表
  for(var _i=0; _i<picture_array.length; _i++) {
    alert(picture_array[_i]);
  }
</script>














以上是关于php中json_encode用法的主要内容,如果未能解决你的问题,请参考以下文章

php中json_encode用法

php7中json之json_encode函数用法

php中json_encode和json_decode的用法

json_encode中文不转义问题

php中自带函数 json_encode

json_encode与json_decode的区别与用法