PHP函数 第39页
PHP函数
list-蚂蚁资源网

list

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

array_pop

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

putenv

putenv(string $assignment): bool向服务器环境添加分配。 环境变量仅在当前请求期间存在。 在请求结束时,环境被恢复到原来的状态。  成功返回true,失败返回false。示例设置环境变量
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方7个月前
03515
zip_read-蚂蚁资源网

zip_read

PHP zip_read() 函数定义和用法zip_read() 函数读取打开的 zip 档案中的下一个文件。如果成功,则返回包含 zip 档案中一个文件的资源。如果没有更多的项目可供读取,则返回 false。语法zip_re...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方7个月前
0457
wordwrap-蚂蚁资源网

wordwrap

PHP wordwrap() 函数定义和用法wordwrap() 函数按照指定长度对字符串进行折行处理。如果成功,则返回折行后的字符串。如果失败,则返回 false。语法wordwrap(string,width,break,cut)参数描述...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方7个月前
0515
strip_tags-蚂蚁资源网

strip_tags

PHP strip_tags() 函数定义和用法strip_tags() 函数剥去 HTML、XML 以及 PHP 的标签。语法strip_tags(string,allow)参数描述string必需。规定要检查的字符串。allow可选。规定允许的标签。这...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方7个月前
05213
metaphone-蚂蚁资源网

metaphone

PHP metaphone() 函数定义和用法metaphone() 函数计算字符串的 metaphone 键。metaphone 键字符串的英语发音。metaphone() 函数可用于拼写检查应用程序。如果成功,则返回字符串的 metaphone ...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方7个月前
0479
simplexml_load_file-蚂蚁资源网

simplexml_load_file

PHP simplexml_load_file() 函数定义和用法simplexml_load_file() 函数把 XML 文档载入对象中。如果失败,则返回 false。语法simplexml_load_file(file,class,options,ns,is_prefix)参数描述f...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方11个月前
04115
mysql_field_type-蚂蚁资源网

mysql_field_type

PHP mysql_field_type() 函数定义和用法mysql_field_type() 函数返回结果集中指定字段的类型。如果成功,则返回指定字段的类型,如果失败,则返回 false。语法mysql_field_type(data,field_of...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方11个月前
02512
mt_srand-蚂蚁资源网

mt_srand

PHP mt_srand() 函数定义和用法mt_srand() 播种 Mersenne Twister 随机数生成器。语法mt_srand(seed)参数描述seed必需。用 seed 来给随机数发生器播种。说明从 PHP 4.2.0 版开始,seed 参数...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方11个月前
03815