全域性變數
$n = 5; //全域性變數 function fun1(){ global $n; echo '我在函數體內也可以呼叫全域性變數n,它的值是:' , $n;//5 $n++; } fun1(); echo '<hr>'; echo $n;//6
$n = 6; function fun1(){ echo '變數的值是:' , $GLOBALS['n']; $GLOBALS['n']++; } fun1(); echo $GLOBALS['n'];
不使用迴圈語句,來計算1~100的和
function recursive($n){ if($n>=1){ return $n + recursive($n-1); } } echo recursive(100);
參照
$foo = 'Bob'; $bar = &$foo; //看待成變數的別名 $bar = 'Rose'; echo $foo;//Rose $foo = 'Mooc'; $bar = &$foo; //看待成變數的別名 unset($foo); //變數銷毀 echo $bar;//Mooc
自定義函數
function fun1(&$n){ $n++; echo '我是函數體內的區域性變數' , $n ;//4 } $n = 3; fun1($n); echo $n , '<hr>';//4
獲得擴充套件名
function getExtension($filename) { $pos = strrpos($filename, '.'); $extension = strtolower(substr($filename, $pos + 1)); return $extension; } $path = 'mooc.func.pHP'; var_dump(getExtension($path));
求平均數
function avg(...$args) { return $args; } var_dump(avg(1, 2, 3));
系統函數庫
字串轉陣列
$str = 'A|B|C|D'; $arr = explode('|', $str); print_r($arr);//[A,B,C,D]
陣列轉字串
$arr2 = array('Tom','John','Rose'); $str2 = implode(',',$arr2); echo $str2;//Tom,John,Rose
獲取擴充套件名:
方法一
$filename = 'ab.cd.gif.JpEg'; //gepj.fig.dc.ba $num = strrpos($filename, '.'); echo strtolower(substr($filename, $num+1)) , '<br/><br/>';//jpeg
方法二
$filename = 'ab.cd.gif.JpEg'; //gepj.fig.dc.ba $str2 = strrev($filename);//strrev反轉字串 $num = strpos($str2, '.'); echo strtolower(strrev(substr($str2, 0,$num)));//jpeg
trim移除字串兩側的字元
$str = "nnttABCtt"; echo trim($str);//ABC
md5()加密
$str = 'abc'; echo md5($str);//900150983cd24fb0d6963f7d28e17f72
格式化字串
$number = 5; $str = 'shanghai'; $txt = sprintf('there are %d million cars in %s',$number,$str); echo $txt;//there are 5 million cars in shanghai $number = 123; $txt = sprintf("帶有兩位小數的結果是:%1$.2f,n不帶小數的是:%1$d",$number); echo $txt;//帶有兩位小數的結果是:123.00,不帶小數的是:123
htmlspecialchars特殊字元轉為HTML實體
$str = "A>B,B<C,Tom&John,He said:"I'm OK""; echo htmlspecialchars($str,ENT_QUOTES);//A>B,B<C,Tom&John,He said:"I'm OK"
通過str_replace進行轉換
$str1 = str_replace('&', '&', $str); //必須是第一階梯 $str2 = str_replace('>', '>', $str1); $str2 = str_replace('<', '<', $str2); $str2 = str_replace('"', '"', $str2); $str2 = str_replace(''', ''', $str2); echo $str2;//A>B,B<C,Tom&John,He said:"I'm OK"
str_ireplace不區分大小寫
$str = 'javascript'; echo str_ireplace('A', 'b', $str);//jbvbscript
隨機地打亂字串中的所有字元
$str = 'abcdefghijklmnopqrstuvwxyz'; $str = str_shuffle($str); echo substr($str,0,4);//drif
strlen獲得字元長度
$str1 = NULL;//0 $str2 = 'AB';//2 $str3 = '中國';//6 一個中文3個字元 echo strlen($str1) , strlen($str2) , strlen($str3);
stripos不區分大小寫,字串從0開始編號,如果沒有出現,則返回FALSE
$str1 = 'javascript'; $str2 = 'A'; var_dump(stripos($str1, $str2)); //int(1)
搜尋$str2在字串中的位置,並返回從該位置到字串結尾的所有字元
$str1 = 'abcdcef'; $str2 = 'c'; echo strrchr($str1, $str2);//cef
獲取擴充套件名
$filename = 'a.bc.cd.png'; echo substr(strrchr($filename, '.'),1);//png
strtoupper轉大寫
strtolower轉小寫
$str1 = 'html'; $str2 = 'PHP'; echo strtoupper($str1) , strtolower($str2);//HTMLphp
ucfirst句子首字母大寫
ucwords單詞首字母大寫
$str3 = 'this is a test'; echo ucfirst($str3) , ucwords($str3);
substr擷取字串
負數=字串長度+該負數
$str = 'javascript'; echo strlen($str);//10 echo substr($str, 0,4) ;//java echo substr($str, 4);//script echo substr($str, -2);//pt -2=10-2=8 echo substr($str, -5,-2) , "n";//cri -5,-2=5,8
將字串轉為Zend_Controller_Front
$str = 'ZenD_CONTRollER_FronT'; //1.轉換小寫 $str1 = strtolower($str); //2.將下劃線替換成空格 $str2 = str_replace('_', ' ', $str1); //3.通過ucwords進行首字母大寫操作 $str3 = ucwords($str2); //4.將空格替換成下劃線 $str4 = str_replace(' ', '_', $str3); echo $str4;//Zend_Controller_Front
floor() ceil() $x = 2.7; $y = 3.01; echo floor($x) , '<br/><br/>';//2 向下取整 echo ceil($y) , '<br/><br/>';//4 向上取整
假設記錄數為X,每頁顯示Y條記錄,求總頁數z
z = ceil(X/Y);
fmod()對浮點數取模
echo fmod(7.8,3) , '<br/>';//1.8
對整數取模
echo 7.8 % 3 ; //整數餘數的操作//1
格式化數位
$x = 7896.827; echo number_format($x) , '<br/><br/>';//7,897 echo number_format($x,2) , '<br/><br/>';//7,896.83
pow()冪操作 sqrt()平方根操作
echo pow(2,3);//8 echo sqrt(4) ;//2
mt_rand()是更好的亂數生成器,因為它跟rand()相比播下了一個更好地亂數種子;而且效能上比rand()快4倍
echo rand(50,80); echo mt_rand(10,99);
生成四位數隨機驗證碼
$chars = 'abcdefghijlmnopqrstuvwxyz789654321'; $len = strlen($chars); for($i=0;$i<4;$i++){ $char .= substr($chars,mt_rand(0,$len-1),1); } echo $char;
round()四捨五入
$x = 7.238; echo round($x);//7 echo round($x,2);//7.24
strtotime字串轉時間
echo '當前日期:' , date('Y-m-d') , "n";//2020-01-10 echo '下個月的日期:' , date('Y-m-d', strtotime('1 month')) , "n";//2020-02-10 echo '上個月最後一天:' , date('Y-m-d H:i:s',strtotime('last day of -1 month')) , "n";//2019-12-31 10:39:12 echo '上個月最後一天零點:' , date('Y-m-d H:i:s', strtotime("midnight last day of -1 month")) , "n"; //2019-12-31 00:00:00 echo '昨天零點:' , date('Y-m-d H:i:s',strtotime('yesterday')) , "n";//2020-01-09 00:00:00 echo '現在:' , date('Y-m-d H:i:s',strtotime('now')) , "n";//2020-01-10 10:39:12 echo '三個星期之間的時間戳是:' , strtotime('-3 weeks');//三個星期之間的時間戳是:1576810790 echo (time() - strtotime('-3 weeks'))/86400 ;//21 間隔時間 echo '上個月:'.date('Y-m-d H:i:s',strtotime('-1 month')) ; //上個月:2019-12-10 10:59:50 echo '上個月的第一天:'.date('Y-m-d H:i:s',strtotime('first day of -1 month'));//上個月的第一天:2019-12-01 10:59:50
返回當前原生的日期/時間的日期/時間資訊
print_r(getdate()); //Array //( // [seconds] => 3 // [minutes] => 42 // [hours] => 10 // [mday] => 10 // [wday] => 5 // [mon] => 1 // [year] => 2020 // [yday] => 9 // [weekday] => Friday //[month] => January //[0] => 1578624123 //)
microtime()返回當前 Unix 時間戳的微秒數
echo microtime();//0.41369400 1578624195
當設定為 TRUE 時,規定函數應該返回一個浮點數,否則返回一個字串;預設為 FALSE
echo microtime(true);//1578624195.4137
計算程式執行時間
$start = microtime(true); $sum = 0; for ($i=0; $i <1000000 ; $i++) { $sum += $i; } $end = microtime(true); echo '共花費' , round($end - $start,3) , '秒';//共花費0.016秒
time() echo time() ;//1578625294 echo '當前的日期時間是:' , date('Y-m-d H:i:s') ;//當前的日期時間是:2020-01-10 11:01:34 echo '昨天的日期時間是:' , date('Y-m-d H:i:s',time()-86400) ; //24*60*60 //昨天的日期時間是:2020-01-09 11:01:34
uniqid() 函數基於以微秒計的當前時間,生成一個唯一的 ID
echo uniqid();//5e17e94f8a19b echo uniqid('abc');//abc5e17e96c1771e echo uniqid(microtime());//0.09603300 15786253885e17e96c17727 echo uniqid(microtime() . mt_rand()); //mt_rand(100,999);//0.09604200 15786253884744704985e17e96c1772f //uuid 8-4-4-4-12 = 32 echo md5(uniqid(microtime() . mt_rand()));//cf6333288fcb04f60fbbedafd127201e
session session_start(); echo session_id();//bp99jhu204h6vi214ttgcjce80
以上就是PHP自定義函數+系統函數庫(程式碼範例)的詳細內容,更多請關注TW511.COM其它相關文章!