phpJSON跨域调用数据的例子
时间:2021-07-01 10:21:17
帮助过:2人阅读
php文件:profile.php
- $arr = array(
- 'name' => '李飞麟',
- 'nick' => '深空',
- 'contact' => array(
- 'email' => 'shenkong at qq dot com',
- 'website' => 'http://bbs.it-home.org',
- )
- );
- $json_string = json_encode($arr);
- echo "getProfile($json_string)";
- ?>
|