# PHP Array 函數
## PHP Array 簡介
array 函數允許您對數組進行操作。
PHP 支持單維和多維的數組。同時提供了用數據庫查詢結果來構造數組的函數。
## 安裝
array 函數是 PHP 核心的組成部分。無需安裝即可使用這些函數。
## PHP Array 函數
PHP:指示支持該函數的最早的 PHP 版本。
| 函數 | 描述 | PHP |
| --- | --- | --- |
| [array()](/php/func_array.asp) | 創建數組。 | 3 |
| [array_change_key_case()](/php/func_array_change_key_case.asp) | 返回其鍵均為大寫或小寫的數組。 | 4 |
| [array_chunk()](/php/func_array_chunk.asp) | 把一個數組分割為新的數組塊。 | 4 |
| [array_combine()](/php/func_array_combine.asp) | 通過合并兩個數組來創建一個新數組。 | 5 |
| [array_count_values()](/php/func_array_count_values.asp) | 用于統計數組中所有值出現的次數。 | 4 |
| [array_diff()](/php/func_array_diff.asp) | 返回兩個數組的差集數組。 | 4 |
| [array_diff_assoc()](/php/func_array_diff_assoc.asp) | 比較鍵名和鍵值,并返回兩個數組的差集數組。 | 4 |
| [array_diff_key()](/php/func_array_diff_key.asp) | 比較鍵名,并返回兩個數組的差集數組。 | 5 |
| [array_diff_uassoc()](/php/func_array_diff_uassoc.asp) | 通過用戶提供的回調函數做索引檢查來計算數組的差集。 | 5 |
| [array_diff_ukey()](/php/func_array_diff_ukey.asp) | 用回調函數對鍵名比較計算數組的差集。 | 5 |
| [array_fill()](/php/func_array_fill.asp) | 用給定的值填充數組。 | 4 |
| [array_filter()](/php/func_array_filter.asp) | 用回調函數過濾數組中的元素。 | 4 |
| [array_flip()](/php/func_array_flip.asp) | 交換數組中的鍵和值。 | 4 |
| [array_intersect()](/php/func_array_intersect.asp) | 計算數組的交集。 | 4 |
| [array_intersect_assoc()](/php/func_array_intersect_assoc.asp) | 比較鍵名和鍵值,并返回兩個數組的交集數組。 | 4 |
| [array_intersect_key()](/php/func_array_intersect_key.asp) | 使用鍵名比較計算數組的交集。 | 5 |
| [array_intersect_uassoc()](/php/func_array_intersect_uassoc.asp) | 帶索引檢查計算數組的交集,用回調函數比較索引。 | 5 |
| [array_intersect_ukey()](/php/func_array_intersect_ukey.asp) | 用回調函數比較鍵名來計算數組的交集。 | 5 |
| [array_key_exists()](/php/func_array_key_exists.asp) | 檢查給定的鍵名或索引是否存在于數組中。 | 4 |
| [array_keys()](/php/func_array_keys.asp) | 返回數組中所有的鍵名。 | 4 |
| [array_map()](/php/func_array_map.asp) | 將回調函數作用到給定數組的單元上。 | 4 |
| [array_merge()](/php/func_array_merge.asp) | 把一個或多個數組合并為一個數組。 | 4 |
| [array_merge_recursive()](/php/func_array_merge_recursive.asp) | 遞歸地合并一個或多個數組。 | 4 |
| [array_multisort()](/php/func_array_multisort.asp) | 對多個數組或多維數組進行排序。 | 4 |
| [array_pad()](/php/func_array_pad.asp) | 用值將數組填補到指定長度。 | 4 |
| [array_pop()](/php/func_array_pop.asp) | 將數組最后一個單元彈出(出棧)。 | 4 |
| [array_product()](/php/func_array_product.asp) | 計算數組中所有值的乘積。 | 5 |
| [array_push()](/php/func_array_push.asp) | 將一個或多個單元(元素)壓入數組的末尾(入棧)。 | 4 |
| [array_rand()](/php/func_array_rand.asp) | 從數組中隨機選出一個或多個元素,并返回。 | 4 |
| [array_reduce()](/php/func_array_reduce.asp) | 用回調函數迭代地將數組簡化為單一的值。 | 4 |
| [array_reverse()](/php/func_array_reverse.asp) | 將原數組中的元素順序翻轉,創建新的數組并返回。 | 4 |
| [array_search()](/php/func_array_search.asp) | 在數組中搜索給定的值,如果成功則返回相應的鍵名。 | 4 |
| [array_shift()](/php/func_array_shift.asp) | 刪除數組中的第一個元素,并返回被刪除元素的值。 | 4 |
| [array_slice()](/php/func_array_slice.asp) | 在數組中根據條件取出一段值,并返回。 | 4 |
| [array_splice()](/php/func_array_splice.asp) | 把數組中的一部分去掉并用其它值取代。 | 4 |
| [array_sum()](/php/func_array_sum.asp) | 計算數組中所有值的和。 | 4 |
| [array_udiff()](/php/func_array_udiff.asp) | 用回調函數比較數據來計算數組的差集。 | 5 |
| [array_udiff_assoc()](/php/func_array_udiff_assoc.asp) | 帶索引檢查計算數組的差集,用回調函數比較數據。 | 5 |
| [array_udiff_uassoc()](/php/func_array_udiff_uassoc.asp) | 帶索引檢查計算數組的差集,用回調函數比較數據和索引。 | 5 |
| [array_uintersect()](/php/func_array_uintersect.asp) | 計算數組的交集,用回調函數比較數據。 | 5 |
| [array_uintersect_assoc()](/php/func_array_uintersect_assoc.asp) | 帶索引檢查計算數組的交集,用回調函數比較數據。 | 5 |
| [array_uintersect_uassoc()](/php/func_array_uintersect_uassoc.asp) | 帶索引檢查計算數組的交集,用回調函數比較數據和索引。 | 5 |
| [array_unique()](/php/func_array_unique.asp) | 刪除數組中重復的值。 | 4 |
| [array_unshift()](/php/func_array_unshift.asp) | 在數組開頭插入一個或多個元素。 | 4 |
| [array_values()](/php/func_array_values.asp) | 返回數組中所有的值。 | 4 |
| [array_walk()](/php/func_array_walk.asp) | 對數組中的每個成員應用用戶函數。 | 3 |
| [array_walk_recursive()](/php/func_array_walk_recursive.asp) | 對數組中的每個成員遞歸地應用用戶函數。 | 5 |
| [arsort()](/php/func_array_arsort.asp) | 對數組進行逆向排序并保持索引關系。 | 3 |
| [asort()](/php/func_array_asort.asp) | 對數組進行排序并保持索引關系。 | 3 |
| [compact()](/php/func_array_compact.asp) | 建立一個數組,包括變量名和它們的值。 | 4 |
| [count()](/php/func_array_count.asp) | 計算數組中的元素數目或對象中的屬性個數。 | 3 |
| [current()](/php/func_array_current.asp) | 返回數組中的當前元素。 | 3 |
| [each()](/php/func_array_each.asp) | 返回數組中當前的鍵/值對并將數組指針向前移動一步。 | 3 |
| [end()](/php/func_array_end.asp) | 將數組的內部指針指向最后一個元素。 | 3 |
| [extract()](/php/func_array_extract.asp) | 從數組中將變量導入到當前的符號表。 | 3 |
| [in_array()](/php/func_array_in_array.asp) | 檢查數組中是否存在指定的值。 | 4 |
| [key()](/php/func_array_key.asp) | 從關聯數組中取得鍵名。 | 3 |
| [krsort()](/php/func_array_krsort.asp) | 對數組按照鍵名逆向排序。 | 3 |
| [ksort()](/php/func_array_ksort.asp) | 對數組按照鍵名排序。 | 3 |
| [list()](/php/func_array_list.asp) | 把數組中的值賦給一些變量。 | 3 |
| [natcasesort()](/php/func_array_natcasesort.asp) | 用“自然排序”算法對數組進行不區分大小寫字母的排序。 | 4 |
| [natsort()](/php/func_array_natsort.asp) | 用“自然排序”算法對數組排序。 | 4 |
| [next()](/php/func_array_next.asp) | 將數組中的內部指針向前移動一位。 | 3 |
| [pos()](/php/func_array_pos.asp) | current() 的別名。 | 3 |
| [prev()](/php/func_array_prev.asp) | 將數組的內部指針倒回一位。 | 3 |
| [range()](/php/func_array_range.asp) | 建立一個包含指定范圍的元素的數組。 | 3 |
| [reset()](/php/func_array_reset.asp) | 將數組的內部指針指向第一個元素。 | 3 |
| [rsort()](/php/func_array_rsort.asp) | 對數組逆向排序。 | 3 |
| [shuffle()](/php/func_array_shuffle.asp) | 把數組中的元素按隨機順序重新排列。 | 3 |
| [sizeof()](/php/func_array_sizeof.asp) | count() 的別名。 | 3 |
| [sort()](/php/func_array_sort.asp) | 對數組排序。 | 3 |
| [uasort()](/php/func_array_uasort.asp) | 使用用戶自定義的比較函數對數組中的值進行排序并保持索引關聯。 | 3 |
| [uksort()](/php/func_array_uksort.asp) | 使用用戶自定義的比較函數對數組中的鍵名進行排序。 | 3 |
| [usort()](/php/func_array_usort.asp) | 使用用戶自定義的比較函數對數組中的值進行排序。 | 3 |
## PHP Array 常量
PHP:指示支持該常量的最早的 PHP 版本。
| 常量 | 描述 | PHP |
| --- | --- | --- |
| CASE_LOWER | 用在 array_change_key_case() 中將數組鍵名轉換成小寫字母。 |
| CASE_UPPER | 用在 array_change_key_case() 中將數組鍵名轉換成大寫字母。 |
| SORT_ASC | 用在 array_multisort() 函數中,使其升序排列。 |
| SORT_DESC | 用在 array_multisort() 函數中,使其降序排列。 |
| SORT_REGULAR | 用于對對象進行通常比較。 |
| SORT_NUMERIC | 用于對對象進行數值比較。 |
| SORT_STRING | 用于對對象進行字符串比較。 |
| SORT_LOCALE_STRING | 基于當前區域來對對象進行字符串比較。 | 4 |
| COUNT_NORMAL |
| COUNT_RECURSIVE |
| EXTR_OVERWRITE |
| EXTR_SKIP |
| EXTR_PREFIX_SAME |
| EXTR_PREFIX_ALL |
| EXTR_PREFIX_INVALID |
| EXTR_PREFIX_IF_EXISTS |
| EXTR_IF_EXISTS |
| EXTR_REFS |
- 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 時區
- 免責聲明