PHP函数 第18页
PHP函数
date_default_timezone_set-蚂蚁资源网

date_default_timezone_set

函数设置用在脚本中所有日期/时间函数的默认时区。参数timezone 必需。时区标识符,比如 'UTC' 或 'Europe/Paris'。 合法时区的列表:http://www.php.net/manual/en/timezones.php注释:自 PH...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方5个月前
05511
list-蚂蚁资源网

list

PHP list() 函数定义和用法list() 函数用数组中的元素为一组变量赋值。注意,与 array() 类似,list() 实际上是一种语言结构,不是函数。语法list(var1,var2...)参数描述var1必需。第一个需...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方5个月前
0505
array_pop-蚂蚁资源网

array_pop

PHP array_pop() 函数定义和用法array_pop() 函数删除数组中的最后一个元素。语法array_pop(array)参数描述array必需。规定输入的数组参数。例子输出:Array ( [0] => Dog [1] => Cat )
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方5个月前
03410
usleep-蚂蚁资源网

usleep

PHP usleep() 函数定义和用法usleep() 函数延迟代码执行若干微秒。语法usleep(microseconds)参数描述microseconds必需。以微秒计的暂停时间。返回值无返回值。提示和注释注释:在 PHP 5 之前...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方1个月前
02714
xml_set_processing_instruction_handler-蚂蚁资源网

xml_set_processing_instruction_handler

PHP xml_set_processing_instruction_handler() 函数定义和用法xml_set_processing_instruction_handler() 函数规定当解析器在 XML 文档中找到处理指令时所调用的函数。处理指令包含在 和 ?> ...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方1个月前
04010
strtr-蚂蚁资源网

strtr

PHP strtr() 函数定义和用法strtr() 函数转换字符串中特定的字符。语法strtr(string,from,to)或者strtr(string,array)参数描述string1必需。规定要转换的字符串。from必需(除非使用数组)。...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方1个月前
02812
str_repeat-蚂蚁资源网

str_repeat

PHP str_repeat() 函数定义和用法str_repeat() 函数把字符串重复指定的次数。语法str_repeat(string,repeat)参数描述string必需。规定要重复的字符串。repeat必需。规定字符串将被重复的次数...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方1个月前
05515
html_entity_decode-蚂蚁资源网

html_entity_decode

PHP html_entity_decode() 函数定义和用法html_entity_decode() 函数把 HTML 实体转换为字符。html_entity_decode() 是 htmlentities() 的反函数。语法html_entity_decode(string,quotestyl...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方1个月前
05115
__construct-蚂蚁资源网

__construct

PHP __construct() 函数定义和用法__construct() 函数创建一个新的 SimpleXMLElement 对象。如果成功,则该函数返回一个对象。如果失败,则返回 false。语法__construct(data,options,is_url,...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方5个月前
02815
mysql_fetch_array-蚂蚁资源网

mysql_fetch_array

PHP mysql_fetch_array() 函数定义和用法mysql_fetch_array() 函数从结果集中取得一行作为关联数组,或数字数组,或二者兼有返回根据从结果集取得的行生成的数组,如果没有更多行则返回 false...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方5个月前
0456