0

我正在使用 zend 框架 2。我想从 zend 形式调用模型中的函数。

情况是我有一个组合框,我需要绑定数据库中的数据以填充其选项和值。

这是我的 zend 形式的选择标签

$this->add(array(

    'name' => 'ddlcountry',

    'type' => 'Zend\Form\Element\Select',

    'options' => array(

        'label' => 'Country',

        'value_options' => (here I've to call function),

    ),

));

对于这个值选项,我想调用下面模型中的函数是我在模型中的函数:

public function fetchcountry()
{

    $this->adapter = $this->getServiceLocator()->get('db');

    $dbAdapterConfig = $this->adapter;       

    $dbAdapter = $dbAdapterConfig;        

    $driver = $dbAdapter->getDriver();

    $connection = $driver->getConnection();

    $result = $connection->execute("CALL sp_showcountry()");

    $statement = $result->getResource();

    $resultdata = $statement->fetchAll(\PDO::FETCH_OBJ);

    return $resultdata;
}
4

1 回答 1

2

在你写这样一个问题之前,请至少检查这个页面上的前 10 个问题,因为你的问题最近被问了好几次;)

请参考我在此处提供的答案:

或者参考我的博文,里面详细介绍了你的问题

于 2013-04-17T05:36:19.507 回答