php變數說明
變數的特點:
1)變數不需要指定資料型別(屬於弱型別)
2)變數名必須以$開頭$name="張三";//直接使用變數,沒有指定資料型別
$age=20;//直接賦值
3)對大小寫敏感
命名規則:由英文本母,數字,下劃線組合,不能以數字開頭
獲取變數型別//輸出變數的值
echo $name;//輸出變數的值
echo '
';//輸出換行符
echo $age;
php報告錯誤gettype 獲取變數型別
語法:string gettype($var)
例:echo gettype($name);//輸出$name的型別
php中報告錯誤:
error_reporting
error_reporting(e_all);//報告所有錯誤
error_reporting(e_all^e_notice);//排除警告,除去e_notice中的錯誤
PHP錯誤報告
級別常量 錯誤值錯誤報告描述 e error 致命的執行時錯誤 阻止指令碼執行 e warning 執行時警告 非致命性錯誤 e parse 從語法中解析錯誤 e notice 執行時注意訊息 可能是或可能不是乙個問題 e core error php啟動時初始化過程中的致命錯誤 e core wa...
PHP 設定錯誤報告
總結 php能夠在執行時動態設定是否顯示錯誤 顯示的錯誤級別。例子 不輸出錯誤報告 error reporting 0 輸出給定級別的錯誤 error reporting e error e warning e parse e notice 輸出除了e notice的他所有錯誤 error repo...
PHP錯誤報告級別
error reporting e all e notice 錯誤報告級別是位字段的疊加,推薦使用 e all e strict 1 e error 致命的執行時錯誤 2 e warning 執行時警告 非致命性錯誤 4 e parse 編譯時解析錯誤 8 e notice 執行時提醒 經常是 bu...