PHP常用函式

2021-10-01 09:30:55 字數 3264 閱讀 6925

1.strlen()與 mb_strlen() 都可以用來計算字串長度,區別在於mb_strlen可以計算中文字串長度

("你好"))

4.chop()移除字串右側的空白字元或者其他字元,這些字元需要自己指定的,預設就是空白字元

5.chr()將指定的ascii值轉換成字元

);7.htmlentities()將字串轉換為html實體

<?php $b=

htmlentities(""

);echo$b,

php_eol

;

<?php $c=

implode([

123456])

;echo$c,

php_eol

;

9.md5()計算字串的md5值

10.md5_file()計算檔案的md5值

<?php 

echo

md5_file

('3.php'),

php_eol

;

11.convert_uuencode() convert_uudecode() uu編碼/解碼

<?php 

echo

convert_uuencode

("hello world"),

php_eol

;echo

convert_uudecode

("+:&5l;&\@=v]r;&0` ` "),

php_eol

;

12.urlencode() urldecode() url編碼/解碼

<?php 

echo

urlencode

("好牛批"),

14.strcmp比較兩個字串(大小寫敏感)

15.strcasecmp()比較兩個字串(大小寫不敏感)

<?php 

var_dump

(strcasecmp

("add"

,"abc"))

;

16.strstr()查詢字串再另乙個字串中第一次出現的位置(大小寫敏感)

<?php $a=

"hello world"

;var_dump

(strstr

("$a",

"wo"))

;

php 採集常用函式 PHP常用採集函式

獲取所有鏈結內容和位址function getallurl code 獲取所有的位址 function getimgsrc code else fnum if fnum fnum 0 return fnum 去除html標記 function text2html txt isu r n txt re...

常用PHP函式

這是一些使用頻率比較高的函式,有的來自別人的程式.1.產生隨機字串函式 function random length return hash 2.擷取一定長度的字串 注 該函式對gb2312使用有效 function wordscut string,length sss 0 for i 0 i le...

PHP常用函式

很有用的一些函式,你可以作為原始碼儲存,然後以後避免重複編寫。檔案讀取函式 檔案讀取函式 function php read file name fclose fd return buf 檔案寫入函式 檔案寫入函式 function php write file name,data,method w...