restclient使用

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

[html] view plaincopy

 

  1.  <form action="action.php" method="post" >  
  2.  <input type="text" name="userName"  id="userName" /><br/>  
  3.  <input type="text" name="userPass"  id="userPass" /><br/>  
  4.  <input type="submit" value="ok" />  
  5. </form> 
  6. action.php
  7. <?php  

  1. $raw_post_data = file_get_contents('php://input''r');  
  2. echo "-------\$_POST------------------<br/>";  
  3. echo var_dump($_POST) . "<br/>";  
  4. echo "-------php://input-------------<br/>";  
  5. echo $raw_post_data . "<br/>";  
  6. ?>   

 

    A+
发布日期:2014年02月28日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: