JSON

用Json实现PHP与JavaScript间数据交换的方法详解(2)

字号+ 作者:H5之家 来源:H5之家 2016-12-27 18:02 我要评论( )

?php header('Content-Type: text/html; charset=utf-8'); $json_string = $_POST["txt_json"]; //echo $json_string; if(ini_get("magic_quotes_gpc")=="1") { $json_string=stripslashes($json_string); } $user


<?php
     header('Content-Type: text/html; charset=utf-8');
     $json_string = $_POST["txt_json"];
     //echo $json_string;
     if(ini_get("magic_quotes_gpc")=="1")
     {
         $json_string=stripslashes($json_string);
     }
     $user = json_decode($json_string);

     echo var_dump($user);

     echo '<br /><br /><br /><br />';
     echo $user->name.'<br />';
     echo $user->email.'<br />';
     echo $user->password.'<br />';
 ?>


这里就需要用到json_decode()这个函数,然后调用其中数据用 $obj->属性即可。

您可能感兴趣的文章:

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • php的serialize序列化和json

    php的serialize序列化和json

    2016-12-28 10:00

  • javascript使用eval解析json的注意点

    javascript使用eval解析json的注意点

    2016-12-27 18:01

  • 使用PHP接收POST数据,解析json数据

    使用PHP接收POST数据,解析json数据

    2016-12-25 10:03

  • PHP容易犯的小错误

    PHP容易犯的小错误

    2016-12-24 15:01

网友点评