給各位分享PHP經常使用函數

數組函數
array_chunk                  //將一個數組分割成多個數組
網站推廣
array_key_exists           //檢查給定的鍵名或索引是否存在於數組中
array_keys                    //返回數組中全部的鍵名,並造成新的數組
array_merge                 //合併一個或多個數組,重建索引
array_values                 //返回數組中全部的值,造成新的數組(數字索引)
array                            //新建一個數組
arsort                          //對數組進行逆向排序並保持索引關係
asort                           //對數組進行排序並保持索引關係
count                        //計算數組中的單元數目或對象中的屬性個數
each                             //返回數組中當前的鍵/值,並將數組指針向前移動一步
end                               //將數組的內部指針指向最後一個單元
extract                          //從數組中將變量導入到當前的符號表(其鍵名做爲變量的名,鍵值做爲變量的值)
in_array                       //檢查數組中是否存在某個值
key                               //從關聯數組中取得鍵名
krsort                           //對數組按照鍵名逆向排序
ksort                            //對數組按照鍵名排序
list                           //把數組中的值賦給一些變量,
next                             //將數組中的內部指針向前移動一位
current                      //返回數組當前單元
reset                         //將數組的內部指針指向第一個單元
sort                              //對數組排序---SORT_REGULAR - 正常比較單元(不改變類型),SORT_NUMERIC - 單元被做爲數字來比較,單元被做爲字符串來比較,根據當前的區域(locale)設置來把單元看成字符串比較

時間日期行數
php


date
gmdate
gmmktime
microtime
time

文件系統函數
basename
chmod
copy
delete/unlink
dirname
fopen/flock/fread/fwrite/fclose
file_exists
file_get_contents
file_put_contents
file
fileatime
filemtime
filesize
ftruncate
is_dir
is_file
is_readable
is_uploaded_file
is_writable
mkdir
move_uploaded_file
rename
rmdir
touch
unlink

數學函數
abs
ceil
floor
max
min


Mysql函數
mysql_connect/mysql_pconnect
mysql_error
mysql_errno
mysql_fetch_array
mysql_fetch_field
mysql_fetch_row
mysql_insert_id
mysql_query

字符串處理函數
addslashes
echo
explode
join
md5
print
//sprintf
str_replace
strstr
strip_tags
stripslashes
strlen
strpos
strtolower
strtouper
substr
trim

URL函數庫
base64_decode
base64_encode
rawurldecode
rawurlencode
urldecode
urlencode

變量函數
empty
floatval
get_defined_vars
gettype
intval
is_array
is_bool
is_float
is_int
is_null
is_numeric
is_object
is_resource
is_string
isset
print_r
settype
strval
unset
var_dump

php.ini
short_open_tag on
asp_tags off
disable_functions
display_errors on
track_errors on
register_globals off
post_max_size
extension_dir = "./ext"
enable_dl off

extension=php_gd2.dll
extension=php_mbstring.dll
extension=php_mysql.dll

mysql


date
gmdate
gmmktime
microtime
time

文件系統函數
basename
chmod
copy
delete/unlink
dirname
fopen/flock/fread/fwrite/fclose
file_exists
file_get_contents
file_put_contents
file
fileatime
filemtime
filesize
ftruncate
is_dir
is_file
is_readable
is_uploaded_file
is_writable
mkdir
move_uploaded_file
rename
rmdir
touch
unlink

數學函數
abs
ceil
floor
max
min


Mysql函數
mysql_connect/mysql_pconnect
mysql_error
mysql_errno
mysql_fetch_array
mysql_fetch_field
mysql_fetch_row
mysql_insert_id
mysql_query

字符串處理函數
addslashes
echo
explode
join
md5
print
//sprintf
str_replace
strstr
strip_tags
stripslashes
strlen
strpos
strtolower
strtouper
substr
trim

URL函數庫
base64_decode
base64_encode
rawurldecode
rawurlencode
urldecode
urlencode

變量函數
empty
floatval
get_defined_vars
gettype
intval
is_array
is_bool
is_float
is_int
is_null
is_numeric
is_object
is_resource
is_string
isset
print_r
settype
strval
unset
var_dump

php.ini
short_open_tag on
asp_tags off
disable_functions
display_errors on
track_errors on
register_globals off
post_max_size
extension_dir = "./ext"
enable_dl off

extension=php_gd2.dll
extension=php_mbstring.dll
網站推廣extension=php_mysql.dll (fblww-0216) sql

相關文章
相關標籤/搜索