我的网站有问题。我的网站获取一个变量并返回一个String。我的意思是,如果你访问我的网站,代码将只有一个3位字符串,例如FEG,PSJ,FGT,HJK。我想使用file_get_contents
函数获取此String。但当我$con = file_get_contents("http://website.com/test.php?name=George");
时,它会给我这个错误
警告:file_get_contents(“http://website.com/test.php?name=George”):无法打开流:HTTP请求失败!第2行的C:\ xampp \ htdocs \ test.php中的HTTP / 1.1 500内部服务器错误
答案 0 :(得分:0)
使用cURL
的示例:
<?php
$ch = curl_init("http://website.com/test.php?name=George");
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>