Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 14 years ago)
- Default Branch: master
- Last Pushed: 2010-03-04T15:30:54.000Z (over 14 years ago)
- Last Synced: 2024-04-15T03:04:08.768Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 78.1 KB
- Stars: 1
- Watchers: 2
- 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);@