這篇文章介紹的內容是關於php基礎之函數,現在分享給大家,有需要的朋友可以參考一下
局部變數
超全域變數
$_SERVER $GLOBALS $_GET $_POST $_REQUEST $_COOKIE $_SESSION
全域變數
#局部靜態變數
在函數內部使用全域變數
$a = 4; function add(){ global $a; $a++; echo $a; } add(); echo "<br/>"; echo $a;
function_exists(); func_get_arg(); func_get_args(); func_num_args();
數學
字串
列印
數組
count()
#相關推薦:
以上是php基礎之函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!