Heim >php教程 >PHP源码 >自己写的php压力测试工具

自己写的php压力测试工具

PHP中文网
PHP中文网Original
2016-05-25 17:09:392474Durchsuche

[PHP]代码

<?php
$doman = $argv[1];
$port = $argv[2];
$file = file("url.text");
$file_arr = array();
foreach($file as &$line){
        $file_arr[] = trim($line);
}
//print_r($file_arr);
$time1 = time();
for($i=0; $i<100000; $i++){
        $random = rand(0,189);
        $rand_url = &#39;http://&#39;.$doman.&#39;:&#39;.$port.$file_arr[$random];
        $content = file_get_contents($rand_url);
}


$time2 = time();

echo $time2 - $time1;
echo "\n";

                   

                   

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:检查字符串中是否有外链Nächster Artikel:php gb2312转big5 函数