PHP 使用 file_get_contents 将数据发布到远程服务器中托管的另一个 php 文件
PHP Posting data to another php file hosted in a remote server using file_get_contents
我可以访问 3 个不同的远程服务器。它们都托管相同的 php 文件,文件名为 processing.php
.
在不同的服务器上我有 3 个页面 :
index.html
:包含一个带有 POST 方法的表单,该方法将数据发送到 forward.php
forward.php
:将表单值转发到其他服务器上的 processing.php
processing.php
: 显示发布的数据
问题:processing.php
中的代码没有执行,返回的结果是processing.php
源代码的纯文本!!
forward.php :
$field1 = $_POST['field1'];
$field2 = $_POST['field2'];
rtrim($_POST['listserver'],"-");
$listServer = explode("-",$_POST['listserver']);
foreach ($listServer as $server){
if(!empty($server)){
$url = 'http://'.$server.'/processing.php';
$data = array('field1' => $field1, 'field2' => $field2);
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded",
'method' => 'POST',
'content' => http_build_query($data)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
if ($result === FALSE) {
echo "You can't ";
}else{
echo ('result : '.$result);
}
}
}
Processing.php
$field1 = $_POST['field1'];
$field2 = $_POST['field2'];
$result = $field1+$field2;
$myFile = "files/result.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $result);
fclose($fh);
但是在所有服务器中,result.txt
是空的!!
感谢@MarkusZeller 的建议,我设法使用 cURL 使其工作。
这个 thread 非常有帮助,谢谢 Stack Over Flow 社区!
我可以访问 3 个不同的远程服务器。它们都托管相同的 php 文件,文件名为 processing.php
.
在不同的服务器上我有 3 个页面 :
index.html
:包含一个带有 POST 方法的表单,该方法将数据发送到forward.php
forward.php
:将表单值转发到其他服务器上的processing.php
processing.php
: 显示发布的数据
问题:processing.php
中的代码没有执行,返回的结果是processing.php
源代码的纯文本!!
forward.php :
$field1 = $_POST['field1'];
$field2 = $_POST['field2'];
rtrim($_POST['listserver'],"-");
$listServer = explode("-",$_POST['listserver']);
foreach ($listServer as $server){
if(!empty($server)){
$url = 'http://'.$server.'/processing.php';
$data = array('field1' => $field1, 'field2' => $field2);
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded",
'method' => 'POST',
'content' => http_build_query($data)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
if ($result === FALSE) {
echo "You can't ";
}else{
echo ('result : '.$result);
}
}
}
Processing.php
$field1 = $_POST['field1'];
$field2 = $_POST['field2'];
$result = $field1+$field2;
$myFile = "files/result.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $result);
fclose($fh);
但是在所有服务器中,result.txt
是空的!!
感谢@MarkusZeller 的建议,我设法使用 cURL 使其工作。
这个 thread 非常有帮助,谢谢 Stack Over Flow 社区!