И Zend, и CI Framework имеют отдельные каталоги Model, View, Controller.Я сомневаюсь, как использовать модель в Zend Framework.
[CodeIgniter Controller]
<?php
class Users extends CI_Controller
{
function __construct()
{
parent::__construct();
$this->load->model('users_model');
}
function index()
{
// here i am using model function //
$myvar = $this->user_model->login();
}
}
?>
[Zend Framework Controller]
<?php
class UsersController extends Zend_Controller_Action
{
public function indexAction()
{
// how to load model and use here ???? //
}
}
?>
В CodeIgniter Controller я загружаю модель"users_model" и используется в индексной функции.Таким же образом, как создать модель Zend и использовать в контроллере?Пожалуйста, помогите мне, извините, мой английский не очень хорош.
Спасибо, друзья, Раджендра