PHP:imagepng()的用法 PHP

imagepng (PHP 4, PHP 5) imagepng — 以 PNG 格式将图像输出到浏览器或文件 说明 bool imagepng ( resource $image [, string $filename ] )...
标签: php php教程

发布于  2024-3-1 21:45

PHP:is_dir()的用法 PHP

is_dir (PHP 4, PHP 5) is_dir — 判断给定文件名是否是一个目录 说明 bool is_dir ( string $filename ) 判断给定文件名是否是一个目录。 参数
标签: php php教程

发布于  2024-3-1 21:44

PHP:is_executable()的用法 PHP

is_executable (PHP 4, PHP 5) is_executable — 判断给定文件名是否可执行 说明 bool is_executable ( string $filename ) 判断给定文件名是否可执行。
标签: php php教程

发布于  2024-3-1 21:44

PHP:fwrite()的用法 PHP

fwrite (PHP 4, PHP 5) fwrite — 写入文件(可安全用于二进制文件) 说明 int fwrite ( resource $handle , string $string [, int $length ] ) fwrite() 把 str
标签: php php教程

发布于  2024-3-1 21:44

PHP:fread()的用法 PHP

fread (PHP 4, PHP 5) fread — 读取文件(可安全用于二进制文件) 说明 string fread ( resource $handle , int $length ) fread() 从文件指针 han...
标签: php php教程

发布于  2024-3-1 21:44

PHP:ftruncate()的用法 PHP

ftruncate (PHP 4, PHP 5) ftruncate — 将文件截断到给定的长度 说明 bool ftruncate ( resource $handle , int $size ) 接受文件指针 handle ...
标签: php php教程

发布于  2024-3-1 21:44

PHP:fopen()的用法 PHP

fopen (PHP 4, PHP 5) fopen — 打开文件或者 URL 说明 resource fopen ( string $filename , string $mode [, bool $use_include_path = false [, resource $context ]] )
标签: php php教程

发布于  2024-3-1 21:44

PHP:fseek()的用法 PHP

fseek (PHP 4, PHP 5) fseek — 在文件指针中定位 说明 int fseek ( resource $handle , int $offset [, int $whence = SEEK_SET ] ) 在与 handle 关联的文件
标签: php php教程

发布于  2024-3-1 21:44

PHP:ftell()的用法 PHP

ftell (PHP 4, PHP 5) ftell — 返回文件指针读/写的位置 说明 int ftell ( resource $handle ) 返回由 handle 指定的文件指针的位置,也就是文件流中的偏移量。 参数 ...
标签: php php教程

发布于  2024-3-1 21:44

PHP:fstat()的用法 PHP

fstat (PHP 4, PHP 5) fstat — 通过已打开的文件指针取得文件信息 说明 array fstat ( resource $handle ) 获取由文件指针 handle 所打开文件的统计
标签: php php教程

发布于  2024-3-1 21:44