Home  >  Article  >  Backend Development  >  使用curl写测试程序解决思路

使用curl写测试程序解决思路

WBOY
WBOYOriginal
2016-06-13 13:39:24709browse

使用curl写测试程序
php中如何使用curl写一个测试程序,测试路径为:http:/server/get.php?appid=9&appver=200&client=1

------解决方案--------------------

PHP code
$ch = curl_init("http:/server/get.php?appid=9&appver=200&client=1") ; 
curl_setopt(?$ch, CURLOPT_RETURNTRANSFER, true) ; 
curl_setopt(?$ch, CURLOPT_BINARYTRANSFER, true) ; 
$output=curl_exec($ch);
echo $output;
curl_close($ch) ; 
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn