Configure zend library library path

I want to know where I can put the "library" folder in my zend project. I currently have this place in my Zend server. This is my current library path:

E:\zend\ZendServer\share\ZendFramework\library

And here is the path to my app project:

E:\zend\Apache2\htdocs\app

Inside the "app" project, I have folders like "public" and "application".

Now, how can I integrate the "library" into my "app" project without referring to it with zendserver?

+3
source share
4 answers

In your application project, u should have a library folder and should contain a zend folder in it. Just copy the library folder and put it in E: \ zend \ apache2 \ htdocs \ app.

+3
source

, "lib" "libraries" ( public, application,...).

.
:

  • public
  • application
  • libs
    • Zend
    • Doctrine
    • ...


Zend Framework, ; -)

: , , , .


, , Zend Framework Deep End.

+4

library dir ( ), .

git svn . . library , , . apt-get install zend-framework-library.

, , include_path index.php.

+4

, , , . , , , include.

, , script, script , . .

+1

Source: https://habr.com/ru/post/1795677/


All Articles