Quick actions

cmd+k|ctrl+k

Navigation

Languages

php循环(for)发送get请求

Snippet info

Language

Php

Visibility

public

Author

mosi

Created

2018-11-20T17:45:13Z

Updated

2018-11-20T18:24:15Z

<?php 
for ($x=0; $x<=287; $x++) {
$url='http://baidu.com/';  
$html = file_get_contents($url);  
echo $html;  
} 
?>
INFO