在CakePHP中部署Zend框架

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在CakePHP中部署Zend框架相关的知识,希望对你有一定的参考价值。

Drop the Zend Framework Library folder into your Vendors folder
  1. // Create a script in your Vendors folder called zf_include_path.php with the following statement:
  2. ini_set('include_path', ini_get('include_path').dirname(__FILE__));
  3.  
  4. // In your action, just do the following, replacing Gdata.php with whatever library you wish to load (i.e. Loader.php):
  5. function myAction() {
  6. App::import('Vendor', 'zend_include_path');
  7. App::import('Vendor', 'Zend_Gdata', true, false, 'Zend/Gdata.php');
  8. }

以上是关于在CakePHP中部署Zend框架的主要内容,如果未能解决你的问题,请参考以下文章

开发大流量PHP网站,用啥框架比较好?codeigniter?Zend Framework?

Ubuntu18.04下基于apache2部署Zend Framework 3 MVC框架含BUG/问题解决)

如何在Zend框架中使用Zend_auth时设置超时

Zend Framework 真的是一个框架还是一个库? [关闭]

Rackspace 云站点上的 PHP(Zend 框架)代码分析

如何在 zend 框架 2 中呈现页面?