码迷,mamicode.com
首页 > Web开发 > 详细

PHP接口并发测试的方法

时间:2019-11-17 10:52:28      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:close   测试的   data   text   type   nbsp   ret   并发   bsp   

PHP接口并发测试的方法
<pre>
header(‘Content-type:text/html; Charset=utf-8‘);

$uri = "输入你的url";

$data = array(
‘test‘=>1
);
$ch = curl_init();
// print_r($ch);
curl_setopt($ch, CURLOPT_URL, $uri);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$return = curl_exec($ch);
curl_close($ch);
</pre>

然后用ab小工具测试


键入命令:
ab -n 800 -c 800 http://192.168.0.10/
(-n发出800个请求,-c模拟800并发,相当800人同时访问,后面是测试url 一般用本地测试就行了)

 

PHP接口并发测试的方法

标签:close   测试的   data   text   type   nbsp   ret   并发   bsp   

原文地址:https://www.cnblogs.com/newmiracle/p/11875287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!