排序
readlink
PHP readlink() 函数定义和用法readlink() 函数返回符号连接指向的目标。若成功,则该函数返回连接的目标。若失败,则返回 false。语法readlink(linkpath)参数描述linkpath必需。规定要检查的...
flock
PHP flock() 函数定义和用法flock() 函数锁定或释放文件。若成功,则返回 true。若失败,则返回 false。语法flock(file,lock,block)参数描述file必需。规定要锁定或释放的已打开的文件。lock...
restore_exception_handler
PHP restore_exception_handler() 函数定义和用法restore_exception_handler() 函数恢复之前的异常处理程序,该程序是由 set_exception_handler() 函数改变的。该函数永远返回 true。语法rest...
date_default_timezone_set
函数设置用在脚本中所有日期/时间函数的默认时区。参数timezone 必需。时区标识符,比如 'UTC' 或 'Europe/Paris'。 合法时区的列表:http://www.php.net/manual/en/timezones.php注释:自 PH...
list
PHP list() 函数定义和用法list() 函数用数组中的元素为一组变量赋值。注意,与 array() 类似,list() 实际上是一种语言结构,不是函数。语法list(var1,var2...)参数描述var1必需。第一个需...
array_pop
PHP array_pop() 函数定义和用法array_pop() 函数删除数组中的最后一个元素。语法array_pop(array)参数描述array必需。规定输入的数组参数。例子输出:Array ( [0] => Dog [1] => Cat )
usleep
PHP usleep() 函数定义和用法usleep() 函数延迟代码执行若干微秒。语法usleep(microseconds)参数描述microseconds必需。以微秒计的暂停时间。返回值无返回值。提示和注释注释:在 PHP 5 之前...
xml_set_processing_instruction_handler
PHP xml_set_processing_instruction_handler() 函数定义和用法xml_set_processing_instruction_handler() 函数规定当解析器在 XML 文档中找到处理指令时所调用的函数。处理指令包含在 和 ?> ...
strtr
PHP strtr() 函数定义和用法strtr() 函数转换字符串中特定的字符。语法strtr(string,from,to)或者strtr(string,array)参数描述string1必需。规定要转换的字符串。from必需(除非使用数组)。...
str_repeat
PHP str_repeat() 函数定义和用法str_repeat() 函数把字符串重复指定的次数。语法str_repeat(string,repeat)参数描述string必需。规定要重复的字符串。repeat必需。规定字符串将被重复的次数...
