https://github.com/abtris/zf-examples-firebug-logging
Zend Framework example page with Firebug logger
https://github.com/abtris/zf-examples-firebug-logging
Last synced: about 1 month ago
JSON representation
Zend Framework example page with Firebug logger
- Host: GitHub
- URL: https://github.com/abtris/zf-examples-firebug-logging
- Owner: abtris
- Created: 2010-03-04T15:23:36.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-03-04T15:30:54.000Z (over 15 years ago)
- Last Synced: 2025-03-27T19:26:51.748Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 78.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
Awesome Lists containing this project
README
h1. Zend Framework Examples
h2. Firebug logging
In indexController set:
@$writer = new Zend_Log_Writer_Firebug();@
@$log = new Zend_Log($writer);@
@// messages@
@$log->log($_REQUEST, Zend_Log::ERR);@
@$log->log($_ENV, Zend_Log::ALERT);@
@$log->log($_SERVER, Zend_Log::ALERT);@