我尝试使用fopen将输出结果保存到出站链接但是它不能与我合作,因为它不会打印结果。
当使用以下代码将输出保存在同一位置时,我的代码已经100%工作:
$file = fopen("../output/result.txt","ab");
fwrite($file,$message);
fclose($file);
现在我尝试使用以下代码将结果保存到出站链接
$file = fopen("https://www.protectedtext.com/TestResult?Test123","ab");
fwrite($file,$message);
fclose($file);
它不像这样工作!!即使是模式ab或w。
随时了解网站提供的在线文字我使用name = TestResult创建并且密码= Test123
如果我错了,请纠正我!答案 0 :(得分:0)
在 php.ini 中通过您的网络服务器,您应该确保有" allow_url_fopen"启用。
你可以尝试在你的php中包含这一行:
ini_set("allow_url_fopen", true);
检查实施http://php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen
的结合