排序
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必需。规定字符串将被重复的次数...
html_entity_decode
PHP html_entity_decode() 函数定义和用法html_entity_decode() 函数把 HTML 实体转换为字符。html_entity_decode() 是 htmlentities() 的反函数。语法html_entity_decode(string,quotestyl...
__construct
PHP __construct() 函数定义和用法__construct() 函数创建一个新的 SimpleXMLElement 对象。如果成功,则该函数返回一个对象。如果失败,则返回 false。语法__construct(data,options,is_url,...
mysql_fetch_array
PHP mysql_fetch_array() 函数定义和用法mysql_fetch_array() 函数从结果集中取得一行作为关联数组,或数字数组,或二者兼有返回根据从结果集取得的行生成的数组,如果没有更多行则返回 false...
is_finite
PHP is_finite() 函数定义和用法is_finite() 函数判断是否为有限值。语法is_finite(x)参数描述x必需。规定要检查的值。说明如果 x 是本机平台上 PHP 浮点数所允许范围中的一个合法的有限值...