php常用函式

2022-05-04 09:45:09 字數 1658 閱讀 8877

php常用函式

函式四要素:返回型別  函式名  引數列表  函式體

//最簡單的函式定義方式

function show()

show();//輸出結果為hello

//

有引數的函式

function show($a)

show("hello");

//

有返回值的函式

function show()

echo show();

//

有預設值的函式

/*function show($a="hello")

show();//輸出hello

show("ceshi");//輸出ceshi

//

可變引數的函式

/*function show()

$s = substr($s,0,strlen($s)-1);//去掉最後乙個,

echo $s;

//輸出結果為0,1,2,3,4,5,6,7,8,9

關於字串的定義

$a = "test";

$s = "helloworld";//echo $s 結果為 hellotestworld

$str = 'helloworld';//echo $str 結果為 helloworld

echo $s;

常用""和''定義字串。

/*$z1 = "p001";

$z2 = "張三";

$z3 = "男";

$z4 = "2000-1-2";

$z5 = "0904";

//$sql = "insert into info values('".$z1."','".$z2."','".$z3."','".$z4."','".$z5."')";//mysql語句增加內容時()裡的內容需要加「」,但是外層已經有「」,括號裡面的就加『』。如果()裡面填寫的是資料,就直接寫就可以,(『p001』,'張三','男','2000-1-2','0904'),但是現在裡面放的是變數,變數需要用「」。所以寫法如前面所示。

$sql = "insert into info values ('','','','','');

echo $sql;

*//輸出結果為insert into info values('p001','張三','男','2000-1-2','0904')

//區別:

//1.單引號不解析轉義字元,內容會原樣輸出。

$s = "hello\nworld";

$str = 'hello\nworld';

echo $s;//輸出結果為hello world

echo $str;//輸出的結果為hello\nworld

//2.單引號不解析變數。雙引號裡面支援變數解析。

定義字串的第三種形式

/*$s = 《你好

a; //這個a必須是打頭寫,前面不能有任何東西,包括空格。

echo $s

這種形式的優點:裡面可以寫雙引號,如果寫在上面的定義方式,會報錯。上面兩種不能寫的可以試試第三種方式。注意第三種的寫法。

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...