如何从POST内发送另一个POST

时间:2014-10-31 18:49:32

标签: php wordpress

我正在尝试发送一个POST但我在其他脚本上收到一个空帖子。 我做错了什么?

if(isset($_POST)){
    $url = 'http://localhost:3000/post';

    $data = $_POST;

    $options = array(
        'http' => array(
            'header'  => "Content-type: application/x-www-form-urlencoded\r\n",
            'method'  => 'POST',
            'content' => http_build_query($data),
        ),
    );
    $context  = stream_context_create($options);
    $result = file_get_contents($url, false, $context);
}

这适用于2个应用之间的同步。 当我更换

  

$ data = $ _POST;

通过

$data = array('key1' => 'value1', 'key2' => 'value2');

像魅力一样!

谢谢!

1 个答案:

答案 0 :(得分:0)

问题在于,wordpress在某些时候删除了$ _POST,在我将代码移到文件顶部后,问题得到了解决。 谢谢大家!