I want to use Zend Framwork's Log mechanism as a seperated component,that means all I want from ZF is just the Log, How can I do this?

link|improve this question

All I mean is how to initialize Zend Log feature – castiel Feb 3 at 2:09
The Zend_Log_Writer manual page seems pretty straightforward. Are you asking for something more than that? – David Weinraub Feb 3 at 4:48
feedback

2 Answers

up vote 3 down vote accepted

According to these two pages

Zend_Log requires Zend_Exception and the following

  • DOM
  • libxml
  • Reflection

What this means is that you really only need the following from the framework itself

library/Zend/Exception.php
library/Zend/Log.php
library/Zend/Log <- the directory

You should then be able to use the logger as a stand-alone component. Just add the library folder in the list above to your include path (Zend Framework components rely on this)

set_include_path(implode(PATH_SEPARATOR, array(
    '/path/to/library',
    get_include_path()
)));

require_once 'Zend/Log/Writer/Stream.php';
require_once 'Zend/Log.php';

$writer = new Zend_Log_Writer_Stream('/path/to/logfile');
$log = new Zend_Log($writer);
$log->log('Some message', 1);
link|improve this answer
yes, thank you man – castiel Feb 7 at 5:10
feedback

Whenever I want to use individual components from Zend Framework I simply include a small file called zend_setup.php that contains the following three lines of code:

set_include_path( '/Users/me/workspace/proj_name/library' . PATH_SEPARATOR . get_include_path());
require_once( '/Users/me/workspace/proj_name/library/Zend/Loader/Autoloader.php' );
Zend_Loader_Autoloader::getInstance();

This is probably not as efficient as issuing explicit require_once() statements, but I like the convenience it offers. For example, you may very quickly decide you also want to utilize Zend_Log_Writer_Firebug() and Zend_Log_Writer_Mail(). Using the autoloader avoids having to write all those additional require_once() statements.

link|improve this answer
thank you all the same, buddy – castiel Feb 7 at 5:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.