1.undefined index ... 問題的解決方法:
在開頭加上
error_reporting(e_all & ~e_notice);
2.編碼/亂碼問題:
php頁面加上或修改:
header('content-type:text/html;charset=utf-8');
帶html標籤的頁面加上或修改:
3.php之fatal error: cannot redeclar
php常見錯誤處理之致命錯誤(二)----重複定義函式
一、錯誤型別:php致命錯誤
error type: php fatal error
fatal error: cannot redeclare (a) (previously declared in (b)) in (c) on line (d)
二、錯誤描述:
該錯誤報告表示你正企圖對已經定義過的函式進行再次定義,其中
a----表示重複定義的函式名;
b----第一次定義該函式時的檔名稱及行號;
c----第二次定義該函式時的檔名稱;
d----第二次定義該函式時的行號。
三、原因及解決方法:
原因:你連續兩次使用相同名稱來定義乙個函式,例如
function
function
(){}
function
function
(){}
結果如下
fatal
error
:cannot
redeclare function()(
previously declared in(
path):2
)in(path
)on line
1解決:
找到已經宣告過的函式,看看是什麼需要導致你再次定義了它。如果只是單純的忘記之前已經定義過,那麼將其中乙個宣告刪除掉就是。當然,你的情況可能給複雜。比如你的指令碼檔案排列異常混亂,並且你可能使用了大量的include()之類的函式,這將導致你很難從混亂的**當中理清思路。
不過,如果你的php版本比較新(php 5.3.8+)貌似就可以用命名空間來解決那種的確有重複定義函式必要的情況。由於這個還不是太確定,所以不在這裡做過多討論。
(2)會提示fatal error:cannot redeclare 函式名也就是你重複宣告了這個函式可以把include或者require改為include_once或者require_once
以上來自:
4.php iconv() 編碼轉換出錯 detected an illegal character
數原型:string iconv ( string $in_charset , string $out_charset , string $str )
特別是第二個引數說明:
the output charset.
notice: iconv() [function.iconv]: detected an illegal character in input string ...
因為gb2312表示的是簡體中文,不支援像"www.111cn.net"之類的更為複雜的漢字以及一些特殊字元,這當然會報錯了,解決辦法有兩種:
1. 擴大輸出字元編碼的範圍,如iconv('utf-8', 'gbk', 'www.111cn.net'),則可以正確地輸出,因為gbk支援的字元範圍更廣;
2. 在輸出的字元編碼字串後面加上"//ignore",如iconv('utf-8', 'gb2312//ignore', 'www.111cn.net'),這樣做其實是忽略了不能轉換的字元,避免了出錯但卻不能夠正確地輸出(即空白不、輸出)。
下面來看看關於php教程 iconv() : detected an illegal character in input string處理方法
$str = iconv('utf-8', 'gbk//ignore', unescape(isset($_get['str'])? $_get['str']:''));
本地測試//ignore能忽略掉它不認識的字接著往下轉,並且不報錯,而//translit是截掉它不認識的字及其後面的內容,並且報錯。//ignore是我需要的。
現在等待上線看結果(這樣不是好的做法,繼續琢磨手冊,上網搜搜看),呵呵。。。
在網上找到下面這篇文章,發現mb_convert_encoding也可以,但效率比iconv差。
轉換字串編碼iconv與mb_convert_encoding的區別
iconv — convert string to requested character encoding(php 4 >= 4.0.5, php 5)
mb_convert_encoding — convert character encoding(php 4 >= 4.0.6, php 5)
用法:string mb_convert_encoding ( string str, string to_encoding [, mixed from_encoding] )
需要先啟用 mbstring 擴充套件庫,在 php.ini裡將; extension=php_mbstring.dll 前面的 ; 去掉
string iconv ( string in_charset, string out_charset, string str )
注意:第二個引數,除了可以指定要轉化到的編碼以外,還可以增加兩個字尾://translit 和 //ignore,
其中://translit 會自動將不能直接轉化的字元變成乙個或多個近似的字元,
//ignore 會忽略掉不能轉化的字元,而預設效果是從第乙個非法字元截斷。
returns the converted string or false on failure.
使用:1. 發現iconv在轉換字元"-"到gb2312時會出錯,如果沒有ignore引數,所有該字元後面的字串都無法被儲存。不管怎麼樣,這個"-"都無法轉換成功,無法輸出。另外mb_convert_encoding沒有這個bug.
2. mb_convert_encoding 可以指定多種輸入編碼,它會根據內容自動識別,但是執行效率比iconv差太多;如:$str = mb_convert_encoding($str,"euc-jp","ascii,jis,euc-jp,sjis,utf- 8");「ascii,jis,euc-jp,sjis,utf-8」的順序不同效果也有差異
3. 一般情況下用 iconv,只有當遇到無法確定原編碼是何種編碼,或者iconv轉化後無法正常顯示時才用mb_convert_encoding 函式
from_encoding is specified by character code name before conversion. it can be array or string - comma separated enumerated list. if it is not specified, the internal encoding will be used.
$str = mb_convert_encoding($str, "ucs-2le", "jis, eucjp-win, sjis-win");
$str = mb_convert_encoding($str, "euc-jp', "auto");
5.notice: undefined offset: 1 in c:\wamp\test\paqu3.php on line51
PHP中的錯誤處理
一 php的錯誤級別 二 調整php錯誤報告級別 php中,調整錯誤報告級別的方式有兩種 1.修改php.ini檔案的配置項。a 會導致在當前伺服器環境下所有php檔案都受其影響。b 如果 更換伺服器,會導致配置檔案全部失效,需要重新配置。所以實際開發過程中,並不推薦使用此方式!2.在 中使用ini...
PHP中的錯誤與異常
留待日後補充 常見的錯誤級別 配置選項 描述error reporting 設定錯誤報告的級別 display errors 是否顯示錯誤 log errors 設定產生的錯誤資訊是否記錄到錯誤日誌中,或者是error log中 log error max len 設定log errors最大位元組...
PHP中的錯誤處理
程式只要在執行,就免不了會出現錯誤!或早或晚,只是時間問題罷了。錯誤很常見,比如notice,warning等等。此時一般使用set error handler來處理 set error handler function errno,errstr,errfile,errline notice use...