摘要:
<?php $ctx = stream_context_create(array( 'http' => array( 'timeout' => 1 //设置一个超时时间,单位为秒 ) ) ); file_get_contents("http://example.com/", 0, $ctx); ?> 设置一个超时时间就可以,可以自行封装函数 阅读全文
摘要:
//定义一个学生数组$students = array( 256=>array('name'=>'jon','grade'=>98.5), 2=>array('name'=>'vance','grade'=>85.1), 9=>array('name'=>'stephen','grade'=>94.0), 364=>array('name'=>'steve' 阅读全文
摘要:
阅读全文