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

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -