Search code examples
phpzend-frameworkzend-loader

accessing a custom library in Zend with proper naming conventions


Him Can anyone tell me how can I access the library in ZEND framework and what is the proper naming convention for libraries in ZEND. I have the following struture


--application
--docs
--library
    --myLibrary.php (class name is also same)
--public

How can I access this library in my model?


Solution

  • If your library is really a single class called myLibrary stored in library/myLibrary.php, then you should be able to add the following to your application/configs/applicatiom.ini file:

    autoloadernamespaces[] = "myLibrary"
    

    Then you should be able to instantiate a myLibrary object using:

    $lib = new myLibrary();