标签:http pie imp ring mit 技术 time() bsp param
一些自己用过的php函数
1.microtime()
microtime — 返回当前 Unix 时间戳和微秒数 返回的是 微秒加空格加unix秒
list($msec, $sec) = explode(‘ ‘, microtime());
2.list()
list---把数组中的值赋给一些变量
array list ( mixed $varname
[, mixed $...
] )
3.explode()
explode---使用一个字符串分割另一个字符串
array explode ( string $delimiter
, string $string
[, int $limit
] )
此函数返回由字符串组成的数组,每个元素都是 string
的一个子串,它们被字符串 delimiter
作为边界点分割出来。
4.implode()
implode---将一个一维数组转化为字符串
string implode ( string $glue
, array $pieces
)
用 glue
将一维数组的值连接为一个字符串。
5.
标签:http pie imp ring mit 技术 time() bsp param
原文地址:https://www.cnblogs.com/djwhome/p/9505510.html