私はfirephpforefirebugのファンです。しかし、それは改行文字を出力しないことを本当に私を悩ませています(駄洒落を許してください)。クエリをnotepad++にコピーして手動でフォーマットする必要があるため、クエリのデバッグは非常に面倒です。
require_once(ROOT_DIR.'/includes/FirePHPCore/FirePHP.class.php');
require_once(ROOT_DIR.'/includes/FirePHPCore/fb.php');
$stringWithNewLines = "
hello world \n \n
and more and more
and
more
";
$firephp->log($stringWithnewLines);
$firephp->info($stringWithnewLines);
$firephp->warn($stringWithnewLines);
$firephp->error($stringWithnewLines);
以下を出力します
私は次のhttp://code.google.com/p/firephp/issues/detail?id=30に出くわしました
基本的にはサポートされておらず、もうアクティブではないように見えるfireconsoleにリンクしていると言っていますか?firephpまたは回避策に代わるものはありませんか?