PHP函数 第26页
PHP函数
microtime-蚂蚁资源网

microtime

PHP microtime() 函数定义和用法microtime() 函数返回当前 Unix 时间戳和微秒数。语法microtime(get_as_float)参数描述get_as_float如果给出了 get_as_float 参数并且其值等价于 TRUE,该函数...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方6个月前
0286
mktime-蚂蚁资源网

mktime

PHP mktime() 函数定义和用法mktime() 函数返回一个日期的 Unix 时间戳。参数总是表示 GMT 日期,因此 is_dst 对结果没有影响。参数可以从右到左依次空着,空着的参数会被设为相应的当前 GM...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方6个月前
0887
strftime-蚂蚁资源网

strftime

PHP strftime() 函数定义和用法strftime() 函数根据区域设置格式化本地时间/日期。语法strftime(format,timestamp)参数描述format可选。规定如何返回结果。timestamp可选。提示和注释提示:...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方6个月前
0438
strptime-蚂蚁资源网

strptime

PHP strptime() 函数定义和用法strptime() 函数解析由 strftime() 生成的日期/时间。语法strptime(date,format)参数描述date要解析的字符串(例如从 strftime() 返回的)。formatdate 所使...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方6个月前
09212
strtotime-蚂蚁资源网

strtotime

PHP strtotime() 函数定义和用法strtotime() 函数将任何英文文本的日期时间描述解析为 Unix 时间戳。语法strtotime(time,now)参数描述time规定要解析的时间字符串。now用来计算返回值的时间戳。...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方6个月前
0547
time-蚂蚁资源网

time

PHP time() 函数 定义和用法 time() 函数返回当前时间的 Unix 时间戳。 语法 time(void) 参数 描述 void 可选。 说明 返回自从 Unix 纪元(格林威治时间 1970 年 1 月 1 日 00:00:00)到当前时...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方6个月前
0796
chdir-蚂蚁资源网

chdir

PHP chdir() 函数定义和用法chdir() 函数把当前的目录改变为指定的目录。若成功,则该函数返回 true,否则返回 false。语法chdir(directory)参数描述directory必需。规定新的当前目录。例子输...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方6个月前
03714
chroot-蚂蚁资源网

chroot

PHP chroot() 函数定义和用法chroot() 函数把当前进程的根目录改变为指定的目录。若成功,则该函数返回 true,否则返回 false。语法chroot(directory)参数描述directory必需。规定新的根目录...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方6个月前
0469
dir-蚂蚁资源网

dir

PHP dir() 函数定义和用法dir() 函数打开一个目录句柄,并返回一个对象。这个对象包含三个方法:read() , rewind() 以及 close()。若成功,则该函数返回一个目录流,否则返回 false 以及一个 ...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方6个月前
03512
closedir-蚂蚁资源网

closedir

PHP closedir() 函数定义和用法closedir() 函数关闭由 opendir() 函数打开的目录句柄。语法closedir(dir_stream)参数描述dir_stream必需。规定要关闭的目录句柄。例子输出:filename: . filena...
蚂蚁官方的头像-蚂蚁资源网蚂蚁官方6个月前
0275