A PHP extension for php-console.This is a C-implement of FirePHP.But now only implement tranditional INFO format information output.
FirePHP is an advanced logging system that can display PHP variables in the browser as an application is navigated. All communication is out of band to the application meaning that the logging data will not interfere with the normal functioning of the application.
- PHP 5.2 +
$/path/to/phpize
$./configure --with-php-config=/path/to/php-config
$make && make install
Temporarily not available
This project is authored and maintained by xudianyang.
Chinese Simplified documentation PHP扩展之firephp console.
<?php
$arr = array(
'key1' => 'php',
'key2' => 'boy',
);
$e1 = new Exception("test firephp php extension", 110);
console($GLOBALS);
sleep(1);
console('xdy', true);
?>