我從ANSI.php獲得數百個。下面是一個例子:PHP禁用特定文件的錯誤?
$ansi->appendString($ssh->read());
一切工作:
/usr/share/pear/File/ANSI.php on line 553 Notice: Undefined offset: 75 in
/usr/share/pear/File/ANSI.php on line 555 Notice: Undefined offset: 76 in
/usr/share/pear/File/ANSI.php on line 553 Notice: Undefined offset: 76 in
/usr/share/pear/File/ANSI.php on line 555 Notice: Undefined offset: 77 in
/usr/share/pear/File/ANSI.php on line 555 Notice: Trying to get property of non-object in
/usr/share/pear/File/ANSI.php on line 496 Notice: Trying to get property of non-object in
這是從產生。我懷疑我正在使用的舊機器給ANSI.php一個很難的時間。
有沒有一種方法可以禁用來自ANSI.PHP的錯誤信息並保留其他信息?除非有人有辦法糾正錯誤。
我不知道ansi lib,但你可以確保'$ ssh-> read()'是一個字符串嗎?比如'$ ansi-> appendString((string)$ ssh-> read());' – antoni
所以我換了$ ansi-> appendString((string)$ ssh-> read());相同的結果。 – MoonEater916
'$ str = $ ssh-> read();如果(!empty($ str)){$ ansi-> appendString($ str); }' – apokryfos