how to use my version of zend framework included with project instead of installed version on server -
how make project use zend framework included in library folder instead of using installed version on server . because version on server lower 1 used in development!! there way force use library in library directory??
just put in before server's path in include_path.
set_include_path(implode(path_separator, array( '/my/path/to/zf', get_include_path(), );
Comments
Post a Comment