stream_context_create
<?php
/*
stream_context_create
引数の連想配列が設定されたコンテキストを作成し返します。
$context = stream_context_create(連想配列);
出力結果「$context」はストリームコンテキストソースとなります。
*/
$posts = 'post data';
$array = array(
'http'=>array(
'method' => \"POST\",
'header' => \"Content-type:application/x-www-form-urlencoded\r\n\".
\"Content-Length: \".strlen($posts) . \"\r\n\",
'content' => $posts
)
);
$context = stream_context_create($array);
$result = file_get_contents('http://localhost/16/php-32-1.php', false, $context);
/*
[出力結果]
※php-32-1.phpの内容が出力されます。
ファイル名:tesFCED.tmp
ファイルサイズ:23
ファイル名:test.ini
ファイルサイズ:131
ファイル名:test.txt
ファイルサイズ:14
*/
?>
|
|