从Zend框架中的控制器访问模型中声明的函数中的变量

时间:2012-10-17 03:19:00

标签: php oop zend-framework methods

我是OOPS和Zend的新手。我正在将Web应用程序代码的一部分转换为Zend框架,我不能在这里发布所有代码因为它非常冗长。我创建了一个模型,如下面的代码(我只能发布两个函数),我想从控制器访问函数内部的变量,然后在HTML表格中打印出来(我想我将不得不使用“视图” “,下面是我的模特:

  public function getVenueTypes()
 {
$poiTypes = array();
    if($this->_cache)
    {

        $key = $this->getCacheKey()."poiTypes_stats:{$this->language}";
    }
    if(!$poiTypes)
    {
        $sql = "SELECT poi_type_id, poi_type_name_".$this->language."
                AS
                poi_type_name
                FROM
                poi_types
                ORDER BY
                poi_type_name_".$this->language." ASC";
        $result = mysql_query($sql);
        if(!$result)
        {
            $message  = 'Invalid query: ' . mysql_error() . "\n";
            $message .= "Whole query: \n\n$sql\n";
            die($message);
        }
        while($row = mysql_fetch_array($result))
        {
            $poiTypes[] = array('id' => $row['poi_type_id'] ,'name' => $row['poi_type_name']);
        }
        print_r($poiTypes);
        if ($this->_cache)
        {
            $this->_cache->save($key, $poiTypes);               

        }    
    } 
foreach($poiTypes as $poiType)
    {
        $count_type = null;
        if($this->_cache)
        {
    $key = $this->getCacheKey()."poiTypeCount:{$poiType['id']}:{$this->metro_id}";
            $count_type = $this->_cache->load($key);
        }
        if(!$count_type)
        {
    $sql = "SELECT COUNT(*) FROM
                poi
                WHERE
                find_in_set('{$poiType['id']}', poi_type_id_array)
                AND poi_status = 1 AND poi_address_prefecture_id = '$this->metro_id'";
            $result = mysql_query($sql) or die(mysql_error());
        }  
        if(!$result)
            {
                $message  = 'Invalid query: ' . mysql_error() . "\n";
                $message .= "Whole query: \n\n$sql\n";
                die($message);
            }

        while($count = mysql_fetch_array($result))
        {
            $count_type[$poiType['id']][$this->metro_id] = $count['COUNT(*)'];
        }
        if($this->_cache)
        {
    $this->_cache->save($key, $count_type);
        }
    } 
 } 

任何帮助都非常感谢,我希望我很清楚,并提前感谢。

2 个答案:

答案 0 :(得分:0)

我不确定这是否会对您有所帮助,但您可以通过多种方式来访问这些值。

选项1:返回包含所需变量的数组

return array($myVar1, $myVar2, ..., $myVarN);

选项2(模块化程度较低):在该函数中创建html字符串,然后回显或返回字符串。

答案 1 :(得分:0)

我假设您对Zend有基本了解

Zend框架的基本思想是控制器,模型和视图之间的链接

您的模型文件BlaBla.php

Class Namespace_models_BlaBla extends Zend_Db_Table_Abstract{

   public function foo(){
       return 'hello world';
    }
}

你的控制器说BarController和一个动作说测试

class BarController extends extends Zend_Controller_Action{  

      public function testAction(){
           $class = new Namespace_models_BlaBla();
           $this->view->string = $class->foo(); 

         }

    }

你的html端// test.phtml

<?php echo $this->string; ?> /**this will output hello world **/