PHP函数 第47页
PHP函数
strtr-蚂蚁资源网

strtr

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

str_repeat

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

html_entity_decode

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

__construct

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

mysql_fetch_array

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

is_finite

PHP is_finite() 函数定义和用法is_finite() 函数判断是否为有限值。语法is_finite(x)参数描述x必需。规定要检查的值。说明如果 x 是本机平台上 PHP 浮点数所允许范围中的一个合法的有限值...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方11个月前
04015
ftp_systype-蚂蚁资源网

ftp_systype

PHP ftp_systype() 函数定义和用法ftp_systype() 函数返回远程 FTP 服务器的系统类型标识符。该函数返回远程服务器的系统类型。若发生错误,则返回 false。语法ftp_systype(ftp_connection)参...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方11个月前
07414
ftp_cdup-蚂蚁资源网

ftp_cdup

PHP ftp_cdup() 函数定义和用法ftp_cdup() 函数把当前目录改变为 FTP 服务器上的父目录。若成功,则返回 true。否则返回 false。语法ftp_cdup(ftp_connection)参数描述ftp_connection必需。规...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方11个月前
0418
is_writeable-蚂蚁资源网

is_writeable

PHP is_writeable() 函数定义和用法is_writeable() 函数判断指定的文件是否可写。该函数是 is_writable() 函数的别名。语法is_writeable(file)参数描述file必需。规定要检查的文件。说明如...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方11个月前
04812
file_get_contents-蚂蚁资源网

file_get_contents

PHP file_get_contents() 函数定义和用法file_get_contents() 函数把整个文件读入一个字符串中。和 file() 一样,不同的是 file_get_contents() 把文件读入一个字符串。file_get_contents()...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方11个月前
0367