您好我正在尝试使用此脚本从我网站上的另一个 php 脚本返回一个值而不离开页面,但我在字符串后面得到数字 1(我假设 1 是资源编号)这是剧本:
<?php
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, false);
// grab URL and pass it to the browser
$result = curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
echo $result;
?>
Output is somthing like this:
"<?php include \\\\localfolder\\blabla\script.php ?>1"
最后的 1 是我不想出现的。
谢谢,
罗伯特