排序
uniqid
PHP uniqid() 函数定义和用法uniqid() 函数基于以微秒计的当前时间,生成一个唯一的 ID。语法uniqid(prefix,more_entropy)参数描述prefix可选。为 ID 规定前缀。如果两个脚本在相同的微妙生成...
time_sleep_until
PHP time_sleep_until() 函数定义和用法time_sleep_until() 函数延迟代码执行直到指定的时间。语法time_sleep_until(timestamp)参数描述timestamp必需。脚本唤醒时的时间戳。说明使脚本暂停执...
time_nanosleep
PHP time_nanosleep() 函数定义和用法time_nanosleep() 函数延迟代码执行若干秒和纳秒。语法time_nanosleep(seconds,nanoseconds)参数描述seconds必需。必须是正整数。nanoseconds必需。必须...
sleep
PHP sleep() 函数定义和用法sleep() 函数延迟代码执行若干秒。语法sleep(seconds)参数描述seconds必需。以秒计的暂停时间。返回值若成功,返回 0,否则返回 false。错误/异常如果指定的描述 ...
show_source
PHP show_source() 函数定义和用法show_source() 函数对文件进行语法高亮显示。本函数是 highlight_file() 的别名。语法show_source(filename,return)参数描述filename必需。要进行高亮处理...
strip_whitespace
PHP strip_whitespace() 函数定义和用法strip_whitespace() 函数返回已删除 PHP 注释以及空白字符的源代码文件。该函数对于检测脚本中的实际代码量很有用。语法strip_whitespace(filename)参数...
pack
PHP pack() 函数定义和用法pack() 函数把数据装入一个二进制字符串。语法pack(format,args+)参数描述format必需。规定在包装数据时所使用的格式。args+可选。规定被包装的一个或多个参数。for...
ignore_user_abort
PHP ignore_user_abort() 函数定义和用法ignore_user_abort() 函数设置与客户机断开是否会终止脚本的执行。本函数返回 user-abort 设置的之前的值(一个布尔值)。语法ignore_user_abort(sett...
highlight_string
PHP highlight_string() 函数定义和用法highlight_string() 函数对字符串进行语法高亮显示。语法highlight_string(string,return)参数描述string必需。要进行高亮处理的字符串。return可选。...
highlight_file
PHP highlight_file() 函数定义和用法highlight_file() 函数对文件进行语法高亮显示。语法highlight_file(filename,return)参数描述filename必需。要进行高亮处理的 PHP 文件的路径。return可...