摘要: 1.explode--使用一个字符串分割另一个字符串 如$input="hello,there";var_dump(explode(',',$input)); 结果为array([0]=>string(5) "hello" [1]=>string(5)"there"); 2.microtime--返 阅读全文
posted @ 2017-08-17 16:55 LACC6 阅读(93) 评论(0) 推荐(0)