Integrating external scripts with Zend Framework

后端 未结 6 1165
礼貌的吻别
礼貌的吻别 2020-12-17 05:00

What is the best way to integrate an external script into the Zend Framework? Let me explain because I may be asking this the wrong way. I have a script that downloads and p

6条回答
  •  情话喂你
    2020-12-17 05:17

    Yes, you should put your own classes that maybe inherit Zend Framework classes or add further classes into your own folder next to the Zend Framework folder in library.

    When you have Zend_Loader s auto-loading enabled, the class names will automatically map to the class you created, e.g.:

    My_Db_Abstract will map to My/Db/Abstract.php .
    

提交回复
热议问题