排序
fflush
PHP fflush() 函数定义和用法fflush() 函数将缓冲内容输出到文件。语法fflush(file)参数描述file必需。规定要检查的文件流。说明本函数强制将所有缓冲的输出写入 file 文件句柄所指向的资源。...
strptime
PHP strptime() 函数定义和用法strptime() 函数解析由 strftime() 生成的日期/时间。语法strptime(date,format)参数描述date要解析的字符串(例如从 strftime() 返回的)。formatdate 所使...
cal_days_in_month
PHP cal_days_in_month() 函数定义和用法cal_days_in_month() 函数针对指定的年份和日历,返回一个月中的天数。语法cal_days_in_month(calendar,month,year)参数描述calendar必需。规定要使用...
array_uintersect
PHP array_uintersect() 函数定义和用法array_uintersect() 函数计算数组的交集,用回调函数比较数据。array_uintersect() 返回一个数组,该数组包含了所有在 array1 中也同时出现在所有其...
array_diff_key
PHP array_diff_key() 函数定义和用法array_diff_key() 函数返回一个数组,该数组包括了所有在被比较的数组中,但是不在任何其他参数数组中的键。语法array_diff_key(array1,array2,array3...)...
constant
PHP constant() 函数定义和用法constant() 函数返回常量的值。语法constant(constant)参数描述constant必需。规定要检查的常量的名称。提示和注释注释:该函数仅适用于 class 常量。例子输出...
xml_error_string
PHP xml_error_string() 函数定义和用法xml_error_string() 函数获取 XML 解析器的错误描述。语法xml_error_string(errorcode)参数描述errorcode必需。规定要使用的错误代码。该错误码是 xml_...
stripos
PHP stripos() 函数定义和用法stripos() 函数返回字符串在另一个字符串中第一次出现的位置。如果没有找到该字符串,则返回 false。语法strpos(string,find,start)参数描述string必需。规定被...
nl2br
PHP nl2br() 函数定义和用法nl2br() 函数在字符串中的每个新行 (n) 之前插入 HTML 换行符 ()。语法nl2br(string)参数描述string必需。规定要检查的字符串。例子输出:One line. Another lin...
addcslashes
PHP addcslashes() 函数定义和用法addcslashes() 函数在指定的字符前添加反斜杠。语法addcslashes(string,characters)参数描述string必需。规定要检查的字符串。characters可选。规定受 addcs...
