Zend Framework 2包含

时间:2014-12-09 17:00:31

标签: php zend-framework zend-framework2

我正在使用一个在视图中使用include语句的php模块。如何使用MVC模型包含此文件?我目前的结构如下。我想从模型中包含Foo文件。以前所有文件都在同一个文件夹中,视图引用了include_once(foo.php)。我尝试了一些不同的路径试图引用foo文件但到目前为止没有成功。

Calendar
   Controller
   Model
     Foo
   Form
   View
     calendar
       calendar
         index 

谢谢 中号

1 个答案:

答案 0 :(得分:0)

//use this 
include realpath(__DIR__.'/../../../Model/Foo.php');

//The first .. moves you to parent directory of index file (View->calendar->calendar)
//The second .. gets you to the parent directory of caldendar direcory(View->calendar)
//The third .. gets you to the parent directory of View directory
//from here you can move to Model directory
//I hope it helps