Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

PHPImpact Blog:
Zend Framework Automatic Dependency Tracking
Feb 04, 2009 @ 16:20:34

This recent post to the PHP::Impact blog looks at a way you, the Zend Framework user can check to see which files are dependencies in your application. Their example uses the Zend_Debug_include component to find out during run-time which of the libraries/components your script might need.

The concept behind Zend_Debug_Include is that the dependencies for each source file are stored in a separate file. If the source file is modified, the file containing that source file’s dependencies is rebuilt. This concept enables you to determine run-time dependencies of files using arbitrary components. This solution is also useful if you are deploying your application using Linux packages.

He has it broken up into a few different kinds of tracking examples - file dependencies, package dependencies and external dependencies. There's also a tip for the URL adapter showing how to make a different file for each request that comes through.

tagged: dependency tracking zendframework automatic zenddebugincludes component

Link:


Trending Topics: