当前位置:Gxlcms > PHP教程 > phpJSON跨域调用数据的例子

phpJSON跨域调用数据的例子

时间:2021-07-01 10:21:17 帮助过:2人阅读

php文件:profile.php

  1. $arr = array(
  2. 'name' => '李飞麟',
  3. 'nick' => '深空',
  4. 'contact' => array(
  5. 'email' => 'shenkong at qq dot com',
  6. 'website' => 'http://bbs.it-home.org',
  7. )
  8. );
  9. $json_string = json_encode($arr);
  10. echo "getProfile($json_string)";
  11. ?>

人气教程排行