- if($_POST['a'] && $_POST['b']) {
- echo 'post data success!';
- exit();
- }
- ?>
文件2:indexx.php 主要测试文件。
- $url = 'http://www.test.com/index.php';
- $data = array(
- 'a' => '1',
- 'b' => '2WWW'
- );
- $params = array(
- 'http' => array(
- 'method' => 'POST',
- 'header' => "Content-type:application/x-www-form-urlencoded",
- 'content' => http_build_query($data),
- ));
- for($i=0;$i<3;$i++){
- $response = file_get_contents($url, false, stream_context_create($params));
- if ($response) {
- echo $response;
- break;
- } else {
- echo 'tring ' . $i . ' failed!
'; - }
- }
- ?>
得到结果:
post data success!
数据成功被Post。 |