English 中文(简体)
如何在同一职能范围内使用一种功能
原标题:how to use a function within same function zend framework

Hii...

我有这样的职能。

class Zend_View_Helper_RenderUOList extends Zend_View_Helper_Abstract {

    public function makeUOList($inputArray, $main = true, $id ="", $class="")
    {
      ------
      ------
      ------
      $output .= "<li>" . $value[ name ] . "
";
      $output .=  makeUOList($value, false,   ,   );
      $output .= "</li>
";

and I am trying to call the same function within the function and I am getting a error message as Fatal error: Call to undefined function makeUOList() in C:devworkspacesadxweblibraryendViewHelperRenderUOList.php on line 99

如果我错过......,则会事先得到任何帮助。

最佳回答

或许是因为它采用了等级方法?

问题回答

泽德有一个观点帮助者编制定购和未定名单,对Zend_View_Helper_HtmlList进行调查。





相关问题
Zend 邮件问题,涉及外国char子+ com子

泽斯德邮局在名称被定为具有外国性质(如“保”)和 com(”)的物品时,就放弃了一种例外(因为邮局(邮局)退回假)。 重新提出以下守则。

PHP Framework: Ebay Like Site

I am going to be builiding a site like ebay - with all the features of ebay. Please note my payment method is limited to paypal. What would be the best PHP framework to use to build this quickly, ...

Link to a specific step in onepage checkout

Is it possible to redirect the browser to nth step in the onepage checkout? If so, how would one go about doing it? I m working on a payment module and have a sort of "cancel" action that i would ...

Tagging with Zend Framework

I m trying to create the same solutions as below, but using a simple MySQL query (instead of the static version used below where the words/tags are implemented in the code). The name of the MySQL ...

dynamicaly adding textboxes to zend_form

I hope that this is a quick question to answer. I am developing a form using Zend_Form, I have a number of Zend_Dojo_Form_Element_Textboxs to add to this form dynamically. These are added from rows ...

热门标签