我发现在 php 中转换<string xmlns="http://tempuri.org/">为 json 有问题,我试图寻找一个例子但都失败了。
这是我的 PHP 脚本:
public function register() {
$url = 'https://example.com/register';
$post_data="Email=frank@email.com";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded; charset=utf-8'));
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
echo $result;
}
这是回应:
请任何人帮我解决这个问题。
芜湖不芜
湖上湖
慕桂英4014372