php開發中常見函式記錄

2022-04-30 14:09:11 字數 1371 閱讀 8741

①htmlspecialchars_decode:將特殊的 html 實體轉換回普通字元

string

htmlspecialchars_decode

string$string[, 

int$flags= ent_compat | ent_html401

] )string

要解碼的字串

flags

用下列標記中的乙個或多個作為乙個位掩碼,來指定如何處理引號和使用哪種文件型別。預設為 ent_compat | ent_html401

有效的flags常量

常量名說明

ent_compat

轉換雙引號,不轉換單引號。

ent_quotes

單引號和雙引號都轉換。

ent_noquotes

單引號和雙引號都不轉換。

ent_html401

作為html 4.01編碼處理。

ent_xml1

作為xml 1編碼處理。

ent_xhtml

作為xhtml編碼處理。

ent_html5

作為html 5編碼處理。

②htmlspecialchars:與上面用法相反,將變通字元轉化成('>test)

③class_exists

:檢查類是否已定義;如果由 

class_name所指的類已經定義,此函式返回true,否則返回false

bool

class_exists

string$class_name[, 

bool$autoload= true

] )class_name

類名。名字的匹配是大小寫不敏感的。

autoload

是否預設呼叫 __autoload。

未完待續.....

php中常見陣列函式

1,定位陣列 bool in array mixed needle,array haystack bool strict 查詢指定元素 array array keys arraqy input mixed search value 返回鍵值組成的陣列 bool array key exists m...

PHP中常見的驗證函式

class yanzhenglei 檢查ip param string str ip位址0.0.0.0 return bool public static function is ip str 檢查手機 param string str 手機號碼 return bool public static ...

php開發中常用函式總結,php開發常用函式總結

輸出 october 3,1975 was on a friday echo oct 3,1975 was on a date l mktime 0,0,0,10,3,1975 在進行日期計算和驗證時會用到 mktime 函式 它會對超出範圍的輸入值自動計算正確的值 echo date m d y ...