Replace FirePHP with composer library

This commit is contained in:
Kijin Sung 2016-01-13 14:07:22 +09:00
parent c3dc2c68f3
commit ecbf7e188b
36 changed files with 3984 additions and 916 deletions

View file

@ -0,0 +1,12 @@
<?php
set_include_path(dirname(dirname(dirname(__FILE__))).'/lib'.PATH_SEPARATOR.get_include_path());
require('FirePHPCore/fb.php');
fb('Hello\nWorld');
fb(array('Hello\nWorld'));
fb(array('Table cell with newline',array(
array('Header'),
array('Hello\nWorld'),
)),FirePHP::TABLE);