php中的錯誤分5類:
1. 致命錯誤parse error 例如:**中遺漏乙個分號;
parseerror: syntax error, unexpected$end in d
注:一般是大括號不匹配
parseerror: syntax error, unexpected t_string in
注:一般是忘了寫句末分號
parse error: syntax error, unexpected t_variablein ***.php on line ***
解決方法:找到***.php的***行,按照上面的分析,找到自己的錯誤,改正即可
2. 執行時錯誤fatal error 例如:呼叫了乙個不存在的函式
fatalerror: cannot redeclare get_sort1() (previously declared in
注:函式已經定義過,不能重新再定義
fatalerror: smarty error: [in message_list.html line 22]: syntax error: 'foreach:item' must be a variable name (literal string)
注:看行號,說明foreach 後面的item 後面必須跟乙個變數名,不加$,是乙個字串(注:沒有單雙引)
fatalerror: smarty error: [in message_list.html line 24]: syntax error: unrecognizedtag: msg.message_id
注:模板中 變數前缺少$
3. 警告錯誤 warning error 例如:函式引數寫錯
warning:invalid argument supplied for foreach() in
注:foreach的第乙個引數必須是乙個陣列
warning:wrong parameter count for 函式名 in
注:函式對數 個數少了
warning:smarty error: unable to read resource: "message_list1.html" in
注:模板檔案找不到,看是否是檔名寫錯或檔案存放到別的目錄中去了
4. 提示錯誤 notice error l例如:使用了沒有定義的變數
notice:undefined variable: 變數名 in
注:使用了乙個沒有被定義的變數
5. 邏輯錯誤 程式設計師一生都在解決的問題(別人幫不了你,一些靠自己)
php變數宣告:必須要以$符開始,後面跟著大小字母、數字、下劃線,但不能以數字開頭
常量:常量名必須全部大寫
include和require的區別
兩者沒有太大的區別,如果要包含的檔案不存在,include會提示notice錯誤,然後繼續執行下面的語句。require會提示 parse 錯誤並且退出
資料庫no databaseselected
注:一般是沒有連線資料庫
warning:mysql_connect() [function.mysql-connect]: access denied foruser'root'@'localhost' (usingpassword: yes) in ….. on line 3
access denied for user 'root'@'localhost' (usingpassword: yes)
注:資料庫使用者名稱密碼錯
warning:mysql_fetch_assoc(): supplied argument is not a valid mysql result resource in
注:這說明前面執行sql 返回失敗,一般可能是sql語句 錯誤 ,如分析 不出來,剛可以列印出 mysql_error (); 看具體是哪個地方錯了
unknowndatabase 'cms07261′
注:沒有這個資料庫
table'cms0726.test' doesn't exist
注:資料表不存在
unknowncolumn 'abc' in 'field list'
注:欄位不存在
columncount doesn't match value count at row 1
注:sql語句中字段值的個數比欄位名個數不一樣
PHP 常見錯誤彙總 20210210
todo 在php中,當session使用memcache儲存時,如果memcache無法訪問,則是什麼狀態。securing session ini settings runtime configuration user datagram protocol ipv4 問題描述 socket sen...
PHP 常見錯誤彙總 20210216
todo 在php中,當session使用memcache儲存時,如果memcache無法訪問,則是什麼狀態。securing session ini settings runtime configuration user datagram protocol ipv4 問題描述 socket sen...
ubuntu原始碼編譯安裝php常見錯誤解決辦法
錯誤二 configure error please reinstall the bzip2 distribution 而我也已經安裝了bzip2,網上找到得解決方案都是需要安裝bzip2 dev,可是11.10裡面沒有這個庫。解決辦法 在網上找到bzip2 1.0.5.tar.gz,解壓,直接ma...