Kohana includes several powerful tools to help you debug your application.
The most basic of these is
Kohana::debug. This simple method will display any number of variables, similar to
var_exportor
print_r, but using HTML for extra formatting.
echo Kohana::debug($foo, $bar); |
Kohana also provides a method to show the source code of a particular file using
Kohana::debug_source.
echo Kohana::debug_source(__FILE__, __LINE__); |
If you want to display information about your application files without exposing the installation directory, you can use
Kohana::debug_path:
echo Kohana::debug_path(APPPATH.'cache'); |
0 comments:
Post a Comment