RESTClient是一个用于测试RESTful Web services的Java客户端。
firefox与google chrome都可以安装restClient,
通过设置header content-type
在要测试的php页面,可以直接用$_POST来测试或用$GLOBALS来打印测试
还可以用file_get_contents('php://input', 'r');
file_get_contents('php://input');
转:http://blog.csdn.net/motian06/article/details/8207923
解释不清,直接上例子
index.html
- <form action="action.php" method="post" >
- <input type="text" name="userName" id="userName" /><br/>
- <input type="text" name="userPass" id="userPass" /><br/>
- <input type="submit" value="ok" />
- </form>
- action.php
-
[php] view plaincopy
-
<?php
- $raw_post_data = file_get_contents('php://input', 'r');
- echo "-------\$_POST------------------<br/>";
- echo var_dump($_POST) . "<br/>";
- echo "-------php://input-------------<br/>";
- echo $raw_post_data . "<br/>";
- ?>