摘要: 测速代码: <?php function getmicrotime() { list($usec, $sec) = explode(" ",microtime()); return ((float)$usec + (float)$sec); } $time_start = getmicrotime( 阅读全文
posted @ 2018-04-10 11:34 #i小龙# 阅读(1961) 评论(0) 推荐(0) 编辑
摘要: strstr -- 返回字符串中从某指定字符开始到结束处的字符串。 语法: string strstr ( string haystack, string needle) 返回haystack中从needle开始到结束的字符串. 如果没有返回值,即没有发现needle,则返回FALSE 注: 这个函 阅读全文
posted @ 2018-04-10 10:42 #i小龙# 阅读(1443) 评论(0) 推荐(0) 编辑