<?php
strlen
("hello world!");
//函式返回字串長度
str_word_count
("hello world!");
//返回字串中單詞個數
strrev
("hello world!");
//反轉字串
strpos
("hello world!"
,"world");
//函式用於檢索字串內指定的字元或文字。
str_replace
("world"
,"kitty"
,"hello world!");
//字串替換,將kitty替換文字world
ltrim()
;//移除字串左側空白字元或其他字元
md5();
//對字串加密
implode()
;join()
;//返回有陣列元素組合的字串
explode()
;//分割字串
<?php
array()
;//建立陣列
array_pop()
;//刪除陣列的最後乙個元素(出棧)
array_push()
;//將乙個元素或多個元素插入陣列的尾部(入棧)
array_shift()
;//刪除陣列中首個元素,並返回刪除的值
array_unshift()
;//在陣列開頭插入乙個或多個元素
sizeof()
;count()
;//返回陣列中元素的數目
in_array()
;//檢查陣列中是否存在指定的值
sort()
;//對陣列排序
ksort()
;//按鍵名排序
krsort()
;//按鍵名逆排序
array_merge()
;//把多個陣列合併為乙個陣列
intval()
;//轉換為整型
floatval()
;//轉換為浮點型
strval()
;//轉換為字串型
settype()
;$num
=123
;$***
=settype
($num
,"bool");
//輸出true
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...