1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$url = 'http://localhost/post.php'; $params = array( 'param1' => '123', // в http://localhost/post.php это будет $_POST['param1'] == '123' 'param2' => 'abc', // в http://localhost/post.php это будет $_POST['param2'] == 'abc' ); $result = file_get_contents($url, false, stream_context_create(array( 'http' => array( 'method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => http_build_query($params) ) ))); echo $result; |