Slim 框架从其他服务器放置 post

Slim framework put post from other server

该代码在同一台服务器上运行良好。

我的问题是如何在一台服务器上进行 post 更新?

所以如果我在 www.domain1.com 上 post 到 emailadres 上的 www.domain2.com(api),我该如何实现?我收到 404 页面。

$app = new \Slim\Slim();

$app->put('/user/update/:id/', function( $id ) use( $app ){
global $connection;
$app->response()->header("Content-Type", "application/json");

if( $id && $id > 0 ){
    $result = $connection->query( 'SELECT * FROM `users` WHERE id = '.(int)$id.' ;' );
}else{
    $result = array();
}

if ($result) {
    $post = $app->request()->put();
    $result = $connection->query( "UPDATE `users` SET email = '".$_POST['email']."' WHERE id = $id;");
    echo json_encode(array(
    "status" => (bool)$result,
    "message" => "User updated successfully"
    ));
}
else{
    echo json_encode(array(
    "status" => false,
    "message" => "User id $id does not exist"
    ));
}
});

$app->run();?>

表格:

<form action="" method="post">
    <input type="text" name="email" value=""/>
    <input type="hidden" name="_METHOD" value="PUT"/>
    <input type="submit" value="Update user"/>
</form>
if($_POST){
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,"http://domain.com/user/update/7/");
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, "email=".$_POST['email']."&_METHOD=put");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $server_output = curl_exec ($ch);
    curl_close ($ch);
}

需要发送_METHOD=put