use phpConsole in codeIgniter
just place the phpconsole.php in the same folder as index (which means the root folder)
add following code in the index.php:
require_once(“PhpConsole.php”);
PhpConsole::start();
then try to use the debug() in the codeIgniter. 🙂