# PHP Filesystem 函数
## PHP Filesystem 简介
Filesystem 函数允许您访问和操作文件系统。
## 安装
Filesystem 函数是 PHP 核心的组成部分。无需安装即可使用这些函数。
## Runtime 配置
文件系统函数的行为受到 php.ini 中设置的影响。
文件系统配置选项:
| 名称 | 默认 | 描述 | 可改变 |
| --- | --- | --- | --- |
| allow_url_fopen | "1" | 本选项激活了 URL 形式的 fopen 封装协议使得可以访问 URL 对象例如文件。默认的封装协议提供用 ftp 和 http 协议来访问远程文件,一些扩展库例如 zlib 可能会注册更多的封装协议。(PHP 4.0.4 版以后可用。) | PHP_INI_SYSTEM |
| user_agent | NULL | 定义 PHP 发送的 User-Agent。(PHP 4.3.0 版以后可用。) | PHP_INI_ALL |
| default_socket_timeout | "60" | 基于 socket 的流的默认超时时间(秒)。(PHP 4.3.0 版以后可用。) | PHP_INI_ALL |
| from | "" | 定义匿名 ftp 的密码(您的 email 地址)。 | PHP_INI_ALL |
| auto_detect_line_endings | "0" | 当设为 On 时,PHP 将检查通过 fgets() 和 file() 取得的数据中的行结束符号是符合 Unix,MS-DOS,还是 Macintosh 的习惯。这使得 PHP 可以和 Macintosh 系统交互操作,但是默认值是 Off,因为在检测第一行的 EOL 习惯时会有很小的性能损失,而且在 Unix 系统下使用回车符号作为项目分隔符的人们会遭遇向下不兼容的行为。(PHP 4.3.0 版以后可用。) | PHP_INI_ALL |
## Unix / Windows 兼容性
当在 Unix 平台上规定路径时,正斜杠 (/) 用作目录分隔符。而在 Windows 平台上,正斜杠 (/) 和反斜杠 (\) 均可使用。
## PHP Filesystem 函数
PHP:指示支持该函数的最早的 PHP 版本。
| 函数 | 描述 | PHP |
| --- | --- | --- |
| [basename()](func_filesystem_basename.asp) | 返回路径中的文件名部分。 | 3 |
| [chgrp()](func_filesystem_chgrp.asp) | 改变文件组。 | 3 |
| [chmod()](func_filesystem_chmod.asp) | 改变文件模式。 | 3 |
| [chown()](func_filesystem_chown.asp) | 改变文件所有者。 | 3 |
| [clearstatcache()](func_filesystem_clearstatcache.asp) | 清除文件状态缓存。 | 3 |
| [copy()](func_filesystem_copy.asp) | 复制文件。 | 3 |
| delete() | 参见 [unlink()](/php/func_filesystem_unlink.asp "PHP unlink() 函数") 或 unset()。 |
| [dirname()](func_filesystem_dirname.asp) | 返回路径中的目录名称部分。 | 3 |
| [disk_free_space()](func_filesystem_disk_free_space.asp) | 返回目录的可用空间。 | 4 |
| [disk_total_space()](func_filesystem_disk_total_space.asp) | 返回一个目录的磁盘总容量。 | 4 |
| [diskfreespace()](func_filesystem_diskfreespace.asp) | disk_free_space() 的别名。 | 3 |
| [fclose()](func_filesystem_fclose.asp) | 关闭打开的文件。 | 3 |
| [feof()](func_filesystem_feof.asp) | 测试文件指针是否到了文件结束的位置。 | 3 |
| [fflush()](func_filesystem_fflush.asp) | 向打开的文件输出缓冲内容。 | 4 |
| [fgetc()](func_filesystem_fgetc.asp) | 从打开的文件中返回字符。 | 3 |
| [fgetcsv()](func_filesystem_fgetcsv.asp) | 从打开的文件中解析一行,校验 CSV 字段。 | 3 |
| [fgets()](func_filesystem_fgets.asp) | 从打开的文件中返回一行。 | 3 |
| [fgetss()](func_filesystem_fgetss.asp) | 从打开的文件中读取一行并过滤掉 HTML 和 PHP 标记。 | 3 |
| [file()](func_filesystem_file.asp) | 把文件读入一个数组中。 | 3 |
| [file_exists()](func_filesystem_file_exists.asp) | 检查文件或目录是否存在。 | 3 |
| [file_get_contents()](func_filesystem_file_get_contents.asp) | 将文件读入字符串。 | 4 |
| [file_put_contents()](func_filesystem_file_put_contents.asp) | 将字符串写入文件。 | 5 |
| [fileatime()](func_filesystem_fileatime.asp) | 返回文件的上次访问时间。 | 3 |
| [filectime()](func_filesystem_filectime.asp) | 返回文件的上次改变时间。 | 3 |
| [filegroup()](func_filesystem_filegroup.asp) | 返回文件的组 ID。 | 3 |
| [fileinode()](func_filesystem_fileinode.asp) | 返回文件的 inode 编号。 | 3 |
| [filemtime()](func_filesystem_filemtime.asp) | 返回文件的上次修改时间。 | 3 |
| [fileowner()](func_filesystem_fileowner.asp) | 文件的 user ID (所有者)。 | 3 |
| [fileperms()](func_filesystem_fileperms.asp) | 返回文件的权限。 | 3 |
| [filesize()](func_filesystem_filesize.asp) | 返回文件大小。 | 3 |
| [filetype()](func_filesystem_filetype.asp) | 返回文件类型。 | 3 |
| [flock()](func_filesystem_flock.asp) | 锁定或释放文件。 | 3 |
| [fnmatch()](func_filesystem_fnmatch.asp) | 根据指定的模式来匹配文件名或字符串。 | 4 |
| [fopen()](func_filesystem_fopen.asp) | 打开一个文件或 URL。 | 3 |
| [fpassthru()](func_filesystem_fpassthru.asp) | 从打开的文件中读数据,直到 EOF,并向输出缓冲写结果。 | 3 |
| [fputcsv()](func_filesystem_fputcsv.asp) | 将行格式化为 CSV 并写入一个打开的文件中。 | 5 |
| [fputs()](func_filesystem_fputs.asp) | fwrite() 的别名。 | 3 |
| [fread()](func_filesystem_fread.asp) | 读取打开的文件。 | 3 |
| [fscanf()](func_filesystem_fscanf.asp) | 根据指定的格式对输入进行解析。 | 4 |
| [fseek()](func_filesystem_fseek.asp) | 在打开的文件中定位。 | 3 |
| [fstat()](func_filesystem_fstat.asp) | 返回关于一个打开的文件的信息。 | 4 |
| [ftell()](func_filesystem_ftell.asp) | 返回文件指针的读/写位置 | 3 |
| [ftruncate()](func_filesystem_ftruncate.asp) | 将文件截断到指定的长度。 | 4 |
| [fwrite()](func_filesystem_fwrite.asp) | 写入文件。 | 3 |
| [glob()](func_filesystem_glob.asp) | 返回一个包含匹配指定模式的文件名/目录的数组。 | 4 |
| [is_dir()](func_filesystem_is_dir.asp) | 判断指定的文件名是否是一个目录。 | 3 |
| [is_executable()](func_filesystem_is_executable.asp) | 判断文件是否可执行。 | 3 |
| [is_file()](func_filesystem_is_file.asp) | 判断指定文件是否为常规的文件。 | 3 |
| [is_link()](func_filesystem_is_link.asp) | 判断指定的文件是否是连接。 | 3 |
| [is_readable()](func_filesystem_is_readable.asp) | 判断文件是否可读。 | 3 |
| [is_uploaded_file()](func_filesystem_is_uploaded_file.asp) | 判断文件是否是通过 HTTP POST 上传的。 | 3 |
| [is_writable()](func_filesystem_is_writable.asp) | 判断文件是否可写。 | 4 |
| [is_writeable()](func_filesystem_is_writeable.asp) | is_writable() 的别名。 | 3 |
| [link()](func_filesystem_link.asp) | 创建一个硬连接。 | 3 |
| [linkinfo()](func_filesystem_linkinfo.asp) | 返回有关一个硬连接的信息。 | 3 |
| [lstat()](func_filesystem_lstat.asp) | 返回关于文件或符号连接的信息。 | 3 |
| [mkdir()](func_filesystem_mkdir.asp) | 创建目录。 | 3 |
| [move_uploaded_file()](func_filesystem_move_uploaded_file.asp) | 将上传的文件移动到新位置。 | 4 |
| [parse_ini_file()](func_filesystem_parse_ini_file.asp) | 解析一个配置文件。 | 4 |
| [pathinfo()](func_filesystem_pathinfo.asp) | 返回关于文件路径的信息。 | 4 |
| [pclose()](func_filesystem_pclose.asp) | 关闭有 popen() 打开的进程。 | 3 |
| [popen()](func_filesystem_popen.asp) | 打开一个进程。 | 3 |
| [readfile()](func_filesystem_readfile.asp) | 读取一个文件,并输出到输出缓冲。 | 3 |
| [readlink()](func_filesystem_readlink.asp) | 返回符号连接的目标。 | 3 |
| [realpath()](func_filesystem_realpath.asp) | 返回绝对路径名。 | 4 |
| [rename()](func_filesystem_rename.asp) | 重名名文件或目录。 | 3 |
| [rewind()](func_filesystem_rewind.asp) | 倒回文件指针的位置。 | 3 |
| [rmdir()](func_filesystem_rmdir.asp) | 删除空的目录。 | 3 |
| [set_file_buffer()](func_filesystem_set_file_buffer.asp) | 设置已打开文件的缓冲大小。 | 3 |
| [stat()](func_filesystem_stat.asp) | 返回关于文件的信息。 | 3 |
| [symlink()](func_filesystem_symlink.asp) | 创建符号连接。 | 3 |
| [tempnam()](func_filesystem_tempnam.asp) | 创建唯一的临时文件。 | 3 |
| [tmpfile()](func_filesystem_tmpfile.asp) | 建立临时文件。 | 3 |
| [touch()](func_filesystem_touch.asp) | 设置文件的访问和修改时间。 | 3 |
| [umask()](func_filesystem_umask.asp) | 改变文件的文件权限。 | 3 |
| [unlink()](func_filesystem_unlink.asp) | 删除文件。 | 3 |
## PHP Filesystem 常量
PHP:指示支持该常量的最早的 PHP 版本。
| 常量 | 描述 | PHP |
| --- | --- | --- |
| GLOB_BRACE |
| GLOB_ONLYDIR |
| GLOB_MARK |
| GLOB_NOSORT |
| GLOB_NOCHECK |
| GLOB_NOESCAPE |
| PATHINFO_DIRNAME |
| PATHINFO_BASENAME |
| PATHINFO_EXTENSION |
| FILE_USE_INCLUDE_PATH |
| FILE_APPEND |
| FILE_IGNORE_NEW_LINES |
| FILE_SKIP_EMPTY_LINES |
- PHP Array 函数
- PHP array()
- PHP array_change_key_case() 函数
- PHP array_chunk() 函数
- PHP array_combine() 函数
- PHP array_count_values() 函数
- PHP array_diff() 函数
- PHP array_diff_assoc() 函数
- PHP array_diff_key() 函数
- PHP array_diff_uassoc() 函数
- PHP array_diff_ukey() 函数
- PHP array_fill() 函数
- PHP array_filter() 函数
- PHP array_flip() 函数
- PHP array_intersect() 函数
- PHP array_intersect_assoc() 函数
- PHP array_intersect_key() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_intersect_ukey() 函数
- PHP array_key_exists() 函数
- PHP array_keys() 函数
- PHP array_map() 函数
- PHP array_merge() 函数
- PHP array_merge_recursive() 函数
- PHP array_multisort() 函数
- PHP array_pad() 函数
- PHP array_pop() 函数
- PHP array_product() 函数
- PHP array_push() 函数
- PHP array_rand() 函数
- PHP array_reduce() 函数
- PHP array_reverse() 函数
- PHP array_search() 函数
- PHP array_shift() 函数
- PHP array_slice() 函数
- PHP array_splice() 函数
- PHP array_sum() 函数
- PHP array_udiff() 函数
- PHP array_udiff_assoc() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_uintersect() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_uintersect_uassoc() 函数
- PHP array_unique() 函数
- PHP array_unshift() 函数
- PHP array_values() 函数
- PHP array_walk() 函数
- PHP array_walk_recursive() 函数
- PHP arsort() 函数
- PHP asort() 函数
- PHP compact() 函数
- PHP count() 函数
- PHP current() 函数
- PHP each() 函数
- PHP extract() 函数
- PHP in_array() 函数
- PHP key() 函数
- PHP krsort() 函数
- PHP ksort() 函数
- PHP list() 函数
- PHP natcasesort() 函数
- PHP natsort() 函数
- PHP next() 函数
- PHP pos() 函数
- PHP prev() 函数
- PHP range() 函数
- PHP reset() 函数
- PHP rsort() 函数
- PHP shuffle() 函数
- PHP sizeof() 函数
- PHP sort() 函数
- PHP uasort() 函数
- PHP uksort() 函数
- PHP usort() 函数
- PHP Calendar 函数
- PHP cal_days_in_month() 函数
- PHP cal_from_jd() 函数
- PHP cal_info() 函数
- PHP cal_to_jd() 函数
- PHP easter_date() 函数
- PHP easter_days() 函数
- PHP FrenchToJD() 函数
- PHP GregorianToJD() 函数
- PHP JDDayOfWeek() 函数
- PHP JDMonthName() 函数
- PHP JDToFrench() 函数
- PHP JDToGregorian() 函数
- PHP JDToJewish() 函数
- PHP JDToJulian() 函数
- PHP JDToUnix() 函数
- PHP JewishToJD() 函数
- PHP JulianToJD() 函数
- PHP UnixToJD() 函数
- PHP cURL 函数
- PHP curl_close函数
- PHP curl_copy_handle函数
- PHP curl_errno函数
- PHP curl_error函数
- PHP curl_escape函数
- PHP curl_exec函数
- PHP curl_file_create函数
- PHP curl_getinfo函数
- PHP curl_init函数
- PHP curl_multi_add_handle函数
- PHP curl_multi_close函数
- PHP curl_multi_exec函数
- PHP curl_multi_getcontent函数
- PHP curl_multi_info_read函数
- PHP curl_multi_init函数
- PHP curl_multi_remove_handle函数
- PHP curl_multi_select函数
- PHP curl_multi_setopt函数
- PHP curl_multi_strerror函数
- PHP curl_pause函数
- PHP curl_reset函数
- PHP curl_setopt_array函数
- PHP curl_setopt函数
- PHP curl_share_close函数
- PHP curl_share_init函数
- PHP curl_share_setopt函数
- PHP curl_strerror函数
- PHP curl_unescape函数
- PHP curl_version函数
- PHP Date / Time 函数
- PHP checkdate() 函数
- PHP date_default_timezone_get() 函数
- PHP date_default_timezone_set() 函数
- PHP date_sunrise() 函数
- PHP date_sunset() 函数
- PHP date() 函数
- PHP getdate() 函数
- PHP gettimeofday() 函数
- PHP gmdate() 函数
- PHP gmmktime() 函数
- PHP gmstrftime() 函数
- PHP idate() 函数
- PHP localtime() 函数
- PHP microtime() 函数
- PHP mktime() 函数
- PHP strftime() 函数
- PHP strptime() 函数
- PHP strtotime() 函数
- PHP time() 函数
- PHP Directory 函数
- PHP chdir() 函数
- PHP chroot() 函数
- PHP dir() 函数
- PHP closedir() 函数
- PHP getcwd() 函数
- PHP opendir() 函数
- PHP readdir() 函数
- PHP rewinddir() 函数
- PHP scandir() 函数
- PHP Error 和 Logging 函数
- PHP debug_backtrace() 函数
- PHP debug_print_backtrace() 函数
- PHP error_get_last() 函数
- PHP error_log() 函数
- PHP error_reporting() 函数
- PHP restore_error_handler() 函数
- PHP restore_exception_handler() 函数
- PHP set_error_handler() 函数
- PHP set_exception_handler() 函数
- PHP trigger_error() 函数
- PHP Filesystem 函数
- PHP basename() 函数
- PHP chgrp() 函数
- PHP chmod() 函数
- PHP chown() 函数
- PHP clearstatcache() 函数
- PHP copy() 函数
- PHP dirname() 函数
- PHP disk_free_space() 函数
- PHP disk_total_space() 函数
- PHP diskfreespace() 函数
- PHP fclose() 函数
- PHP feof() 函数
- PHP fflush() 函数
- PHP fgetc() 函数
- PHP fgetcsv() 函数
- PHP fgets() 函数
- PHP fgetss() 函数
- PHP file() 函数
- PHP file_exists() 函数
- PHP file_get_contents() 函数
- PHP file_put_contents() 函数
- PHP fileatime() 函数
- PHP filectime() 函数
- PHP filegroup() 函数
- PHP fileinode() 函数
- PHP filemtime() 函数
- PHP fileowner() 函数
- PHP fileperms() 函数
- PHP filesize() 函数
- PHP filetype() 函数
- PHP flock() 函数
- PHP fnmatch() 函数
- PHP fopen() 函数
- PHP fpassthru() 函数
- PHP fputcsv() 函数
- PHP fputs() 函数
- PHP fread() 函数
- PHP fscanf() 函数
- PHP fseek() 函数
- PHP fstat() 函数
- PHP ftell() 函数
- PHP ftruncate() 函数
- PHP fwrite() 函数
- PHP glob() 函数
- PHP is_dir() 函数
- PHP is_executable() 函数
- PHP is_file() 函数
- PHP is_link() 函数
- PHP is_readable() 函数
- PHP is_uploaded_file() 函数
- PHP is_writable() 函数
- PHP is_writeable() 函数
- PHP link() 函数
- PHP linkinfo() 函数
- PHP lstat() 函数
- PHP mkdir() 函数
- PHP move_uploaded_file() 函数
- PHP parse_ini_file() 函数
- PHP pathinfo() 函数
- PHP pclose() 函数
- PHP popen() 函数
- PHP readfile() 函数
- PHP readlink() 函数
- PHP realpath() 函数
- PHP rename() 函数
- PHP rewind() 函数
- PHP rmdir() 函数
- PHP set_file_buffer() 函数
- PHP stat() 函数
- PHP symlink() 函数
- PHP tempnam() 函数
- PHP tmpfile() 函数
- PHP touch() 函数
- PHP umask() 函数
- PHP unlink() 函数
- PHP Filter 函数
- PHP filter_has_var() 函数
- PHP filter_id() 函数
- PHP filter_input() 函数
- PHP filter_input_array() 函数
- PHP filter_list() 函数
- PHP filter_var_array() 函数
- PHP filter_var() 函数
- PHP FTP 函数
- PHP ftp_alloc() 函数
- PHP ftp_cdup() 函数
- PHP ftp_chdir() 函数
- PHP ftp_chmod() 函数
- PHP ftp_close() 函数
- PHP ftp_connect() 函数
- PHP ftp_delete() 函数
- PHP ftp_exec() 函数
- PHP ftp_fget() 函数
- PHP ftp_fput() 函数
- PHP ftp_get_option() 函数
- PHP ftp_get() 函数
- PHP ftp_login() 函数
- PHP ftp_mdtm() 函数
- PHP ftp_mkdir() 函数
- PHP ftp_nb_continue() 函数
- PHP ftp_nb_fget() 函数
- PHP ftp_nb_put() 函数
- PHP ftp_nlist() 函数
- PHP ftp_pasv() 函数
- PHP ftp_put() 函数
- PHP ftp_pwd() 函数
- PHP ftp_quit() 函数
- PHP ftp_raw() 函数
- PHP ftp_rawlist() 函数
- PHP ftp_rename() 函数
- PHP ftp_rmdir() 函数
- PHP ftp_set_option() 函数
- PHP ftp_site() 函数
- PHP ftp_size() 函数
- PHP ftp_ssl_connect() 函数
- PHP ftp_systype() 函数
- PHP HTTP 函数
- PHP header() 函数
- PHP headers_list() 函数
- PHP headers_sent() 函数
- PHP setcookie() 函数
- PHP setrawcookie() 函数
- PHP libxml 函数
- PHP libxml_clear_errors() 函数
- PHP libxml_get_errors() 函数
- PHP libxml_get_last_error() 函数
- PHP libxml_use_internal_errors() 函数
- PHP Mail 函数
- PHP mail() 函数
- PHP Math 函数
- PHP abs() 函数
- PHP acos() 函数
- PHP acosh() 函数
- PHP asin() 函数
- PHP asinh() 函数
- PHP atan() 和 atan2() 函数
- PHP atanh() 函数
- PHP base_convert() 函数
- PHP bindec() 函数
- PHP ceil() 函数
- PHP cos() 函数
- PHP cosh() 函数
- PHP decbin() 函数
- PHP dechex() 函数
- PHP decoct() 函数
- PHP deg2rad() 函数
- PHP exp() 函数
- PHP expm1() 函数
- PHP floor() 函数
- PHP fmod() 函数
- PHP hexdec() 函数
- PHP hypot() 函数
- PHP is_finite() 函数
- PHP is_infinite() 函数
- PHP is_nan() 函数
- PHP lcg_value() 函数
- PHP log() 函数
- PHP log10() 函数
- PHP log1p() 函数
- PHP max() 函数
- PHP min() 函数
- PHP mt_getrandmax() 函数
- PHP mt_rand() 函数
- PHP mt_srand() 函数
- PHP octdec() 函数
- PHP pi() 函数
- PHP pow() 函数
- PHP rad2deg() 函数
- PHP rand() 函数
- PHP round() 函数
- PHP sin() 函数
- PHP sinh() 函数
- PHP sqrt() 函数
- PHP srand() 函数
- PHP tan() 函数
- PHP tanh() 函数
- PHP 5 MySQLi 函数
- PHP mysqli_affected_rows() 函数
- PHP mysqli_autocommit() 函数
- PHP mysqli_change_user() 函数
- PHP mysqli_character_set_name() 函数
- PHP mysqli_close() 函数
- PHP mysqli_commit() 函数
- PHP mysqli_connect_errno() 函数
- PHP mysqli_connect_error() 函数
- PHP mysqli_connect() 函数
- PHP mysqli_data_seek() 函数
- PHP mysqli_debug() 函数
- PHP mysqli_dump_debug_info() 函数
- PHP mysqli_errno() 函数
- PHP mysqli_error_list() 函数
- PHP mysqli_error() 函数
- PHP mysqli_fetch_all() 函数
- PHP mysqli_fetch_array() 函数
- PHP mysqli_fetch_assoc() 函数
- PHP mysqli_fetch_field_direct() 函数
- PHP mysqli_fetch_field() 函数
- PHP mysqli_fetch_fields() 函数
- PHP mysqli_fetch_lengths() 函数
- PHP mysqli_fetch_object() 函数
- PHP mysqli_fetch_row() 函数
- PHP mysqli_field_count() 函数
- PHP mysqli_field_seek() 函数
- PHP mysqli_field_tell() 函数
- PHP mysqli_free_result() 函数
- PHP mysqli_get_charset() 函数
- PHP mysqli_get_client_info() 函数
- PHP mysqli_get_client_stats() 函数
- PHP mysqli_get_client_version() 函数
- PHP mysqli_get_connection_stats() 函数
- PHP mysqli_get_connection_stats() 函数
- PHP mysqli_get_host_info() 函数
- PHP mysqli_get_proto_info() 函数
- PHP mysqli_get_server_info() 函数
- PHP mysqli_get_server_version() 函数
- PHP mysqli_info() 函数
- PHP mysqli_init() 函数
- PHP mysqli_insert_id() 函数
- PHP mysqli_kill() 函数
- PHP mysqli_more_results() 函数
- PHP mysqli_multi_query() 函数
- PHP mysqli_next_result() 函数
- PHP mysqli_num_fields() 函数
- PHP mysqli_num_rows() 函数
- PHP mysqli_options() 函数
- PHP mysqli_ping() 函数
- PHP mysqli_query() 函数
- PHP mysqli_real_connect() 函数
- PHP mysqli_real_escape_string() 函数
- PHP mysqli_refresh() 函数
- PHP mysqli_rollback() 函数
- PHP mysqli_select_db() 函数
- PHP mysqli_set_charset() 函数
- PHP mysqli_sqlstate() 函数
- PHP mysqli_ssl_set() 函数
- PHP mysqli_stat() 函数
- PHP mysqli_stmt_init() 函数
- PHP mysqli_thread_id() 函数
- PHP mysqli_thread_safe() 函数
- PHP PDO
- PHP PDO预定义常量
- PHP PDO连接
- PHP PDO 事务与自动提交
- PHP PDO 预处理语句与存储过程
- PHP PDO 错误与错误处理
- PHP PDO 大对象 (LOBs)
- PDO::beginTransaction
- PDO::commit
- PDO::__construct
- PDO::errorCode
- PDO::errorInfo
- PDO::exec
- PDO::getAttribute
- PDO::getAvailableDrivers
- PDO::inTransaction
- PDO::lastInsertId
- PDO::prepare
- PDO::query
- PDO::quote
- PDO::rollBack
- PDO::setAttribute
- PDOStatement::bindColumn
- PDOStatement::bindParam
- PDOStatement::bindValue
- PDOStatement::closeCursor
- PDOStatement::columnCount
- PDOStatement::debugDumpParams
- PDOStatement::errorCode
- PDOStatement::errorInfo
- PDOStatement::execute
- PDOStatement::fetch
- PDOStatement::fetchAll
- PDOStatement::fetchColumn
- PDOStatement::fetchObject
- PDOStatement::getAttribute
- PDOStatement::getColumnMeta
- PDOStatement::nextRowset
- PDOStatement::rowCount
- PDOStatement::setAttribute
- PDOStatement::setFetchMode
- PHP SimpleXML 函数
- PHP __construct() 函数
- PHP addAttribute() 函数
- PHP addChild() 函数
- PHP asXML() 函数
- PHP attributes() 函数
- PHP children() 函数
- PHP getDocNamespaces() 函数
- PHP getName() 函数
- PHP getNamespace() 函数
- PHP registerXPathNamespace() 函数
- PHP simplexml_import_dom() 函数
- PHP simplexml_load_file() 函数
- PHP simplexml_load_string() 函数
- PHP xpath() 函数
- PHP String 函数
- PHP addcslashes() 函数
- PHP addslashes() 函数
- PHP bin2hex() 函数
- PHP chop() 函数
- PHP chr() 函数
- PHP chunk_split() 函数
- PHP convert_cyr_string() 函数
- PHP convert_uudecode() 函数
- PHP convert_uuencode() 函数
- PHP count_chars() 函数
- PHP crc32() 函数
- PHP crypt() 函数
- PHP echo() 函数
- PHP explode() 函数
- PHP fprintf() 函数
- PHP get_html_translation_table() 函数
- PHP hebrev() 函数
- PHP hebrevc() 函数
- PHP html_entity_decode() 函数
- PHP htmlentities() 函数
- PHP htmlspecialchars_decode() 函数
- PHP htmlspecialchars() 函数
- PHP implode() 函数
- PHP join() 函数
- PHP levenshtein() 函数
- PHP localeconv() 函数
- PHP ltrim() 函数
- PHP md5() 函数
- PHP md5_file() 函数
- PHP money_format() 函数
- PHP nl_langinfo() 函数
- PHP nl2br() 函数
- PHP number_format() 函数
- PHP ord() 函数
- PHP parse_str() 函数
- PHP print() 函数
- PHP printf() 函数
- PHP quoted_printable_decode() 函数
- PHP quotemeta() 函数
- PHP rtrim() 函数
- PHP setlocale() 函数
- PHP sha1() 函数
- PHP sha1_file() 函数
- PHP similar_text() 函数
- PHP soundex() 函数
- PHP sprintf() 函数
- PHP sscanf() 函数
- PHP str_ireplace() 函数
- PHP str_pad() 函数
- PHP str_repeat() 函数
- PHP str_replace() 函数
- PHP str_rot13() 函数
- PHP str_shuffle() 函数
- PHP str_split() 函数
- PHP str_word_count() 函数
- PHP strcasecmp() 函数
- PHP strchr() 函数
- PHP strcmp() 函数
- PHP strcoll() 函数
- PHP strcspn() 函数
- PHP strip_tags() 函数
- PHP stripcslashes() 函数
- PHP stripslashes() 函数
- PHP stripos() 函数
- PHP stristr() 函数
- PHP strlen() 函数
- PHP strnatcasecmp() 函数
- PHP strnatcmp() 函数
- PHP strncasecmp() 函数
- PHP strncmp() 函数
- PHP strpbrk() 函数
- PHP strpos() 函数
- PHP strrchr() 函数
- PHP strrev() 函数
- PHP strripos() 函数
- PHP strrpos() 函数
- PHP strspn() 函数
- PHP strstr() 函数
- PHP strtok() 函数
- PHP strtolower() 函数
- PHP strtoupper() 函数
- PHP strtr() 函数
- PHP substr() 函数
- PHP substr_compare() 函数
- PHP substr_count() 函数
- PHP substr_replace() 函数
- PHP trim() 函数
- PHP ucfirst() 函数
- PHP ucwords() 函数
- PHP vfprintf() 函数
- PHP vprintf() 函数
- PHP vsprintf() 函数
- PHP wordwrap() 函数
- PHP XML Parser 函数
- PHP utf8_decode() 函数
- PHP utf8_encode() 函数
- PHP xml_error_string() 函数
- PHP xml_get_current_byte_index() 函数
- PHP xml_get_current_line_number() 函数
- PHP xml_get_error_code() 函数
- PHP xml_parse() 函数
- PHP xml_parse_into_struct() 函数
- PHP xml_parser_create_ns() 函数
- PHP xml_parser_create() 函数
- PHP xml_parser_free() 函数
- PHP xml_parser_get_option() 函数
- PHP xml_parser_set_option() 函数
- PHP xml_set_character_data_handler() 函数
- PHP xml_set_default_handler() 函数
- PHP xml_set_element_handler() 函数
- PHP xml_set_external_entity_ref_handler() 函数
- PHP xml_set_notation_decl_handler() 函数
- PHP xml_set_object() 函数
- PHP xml_set_processing_instruction_handler() 函数
- PHP xml_set_unparsed_entity_decl_handler() 函数
- PHP Zip File 函数
- PHP zip_close() 函数
- PHP zip_entry_close() 函数
- PHP zip_entry_compressedsize() 函数
- PHP zip_entry_compressionmethod() 函数
- PHP zip_entry_filesize() 函数
- PHP zip_entry_name() 函数
- PHP zip_entry_open() 函数
- PHP zip_entry_read() 函数
- PHP zip_open() 函数
- PHP zip_read() 函数
- PHP 杂项函数
- PHP connection_aborted() 函数
- PHP connection_status() 函数
- PHP constant() 函数
- PHP define() 函数
- PHP defined() 函数
- PHP die() 函数
- PHP eval() 函数
- PHP exit() 函数
- PHP get_browser() 函数
- PHP highlight_file() 函数
- PHP highlight_string() 函数
- PHP ignore_user_abort() 函数
- PHP pack() 函数
- PHP strip_whitespace() 函数
- PHP show_source() 函数
- PHP sleep() 函数
- PHP time_nanosleep() 函数
- PHP time_sleep_until() 函数
- PHP uniqid() 函数
- PHP unpack() 函数
- PHP usleep() 函数
- PHP 5 时区
- 免责声明