88,190 Installs and Counting! Get Sparks Now!
Hey! Keep up to date with the project through its beta and public launch by following @getsparks.
Tweet
A Quick Looks At Sparks (EllisLab Official Post)
March 11, 2012
from: codeigniter.com
The Top Sparks of 2011
December 31, 2011
from: codefury.net
CodeIgniter Starter Project − A Starting Point for Any CI Dev
December 12, 2011
from: github.com
NetTuts+ Tutorial for GetSparks
November 24, 2011
from: net.tutsplus.com
Tracer out vars and arrays recursively in an easy to manage manner
| Contributor | : dperrymorrow |
| : Log in to view | |
| Author Website | : http://www.newfinds.com |
| Spark Website | : http://newfinds.com/code-igniter-sparks/tracer/ |
| Repository Type | : git |
| Number of Installs | : 727 |
php tools/spark install -v0.6.0 tracer
Or download this version manually:
Get tracer-0.6.0.zip
This is a very simple yet useful helper for tracing out data while you are working. Will trace out strings and arrays recursively.

// from a controller
function index(){
$this->load->spark( 'tracer/x.x' );
// keep on rendering page if false ( default )
trace( $_SERVER, FALSE );
// exit php and rendering if true
trace( $_SERVER, TRUE );
}
You can also trace out everything that was passed to your view. This must be called after you load view and pass data via $this->load->view( 'viewname', $data ); See http://codeigniter.com/user_guide/libraries/loader.html for more information on views and data.
trace_viewdata( TRUE ); // will exit if true, no if false
Thats it!!
php tools/spark install -v0.5.0 tracer
Or download this version manually:
Get tracer-v0.5.zip
php tools/spark install -v0.3.0 tracer
Or download this version manually:
Get tracer-v0.3.zip
php tools/spark install -v0.2.0 tracer
Or download this version manually:
Get tracer-v0.2.zip
php tools/spark install -v0.1.0 tracer
Or download this version manually:
Get tracer-v0.1.zip