0

我的 zend 应用程序中有一个用户定义类(默认)

应用程序/库/Custom_/Custom_Test.php

我想在 indexController.php 的 getvalueAction() 中使用它

我尝试在 [production] 的 application.ini 中包含以下行

autoloaderNamespaces.custom = "Custom_"

我不想使用简单的包含函数,也无法在 getvalueAction() 中实例化它。怎么做 ?

  • 使用网豆
  • Ubuntu 11.10
  • 我是zend新手

谢谢你。

PS:为了清楚起见,我将在下面显示我的代码

索引控制器.php

<?php

class IndexController extends Zend_Controller_Action
{

    public function init()
    {}

    public function indexAction()
    {}

    public function getvalueAction() {
        $request = $this->getRequest();
        $numb = $request->getParam('numb');

        $result = Test::testFunction($numb);
        $this->view->assign('result',$result);
    }

    public function inputAction() {
        $this->view->assign('action','getvalue');
    }
}

在 input.phtml 里面

  <form name="enterNumber" method="post" action="<?php echo $this->escape($this->action)?>" >

      input a number :
      <input type="text" name="numb"/> <br/>
      <input type="submit" value="Submit" />


  </form>

在 getvalue.phtml 里面

  <h1><?php echo "Final value id " . $this->escape($this->result); ?></h1>

索引.php

<?php

// Define path to application directory
defined('APPLICATION_PATH')
    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));

// Define application environment
defined('APPLICATION_ENV')
    || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));

// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
    realpath(APPLICATION_PATH . '/../library'),
    get_include_path(),
)));

/** Zend_Application */
require_once 'Zend/Application.php';

// Create application, bootstrap, and run
$application = new Zend_Application(
    APPLICATION_ENV,
    APPLICATION_PATH . '/configs/application.ini'
);
$application->bootstrap()
            ->run();

应用程序.ini

[production]
phpSettings.display_startup_errors = 0
phpSettings.display_errors = 0
includePaths.library = APPLICATION_PATH "/../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
appnamespace = "Application"
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
resources.frontController.params.displayExceptions = 0

[staging : production]

[testing : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1

[development : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
resources.frontController.params.displayExceptions = 1

Custom_Test.php

<?php

    class CustomTest{

        function testFunction($a) {

            return $a*2;
        }
    }

?>
4

3 回答 3

2

行动助手是您所需要的。

既然你说

我想在 indexController.php 的 getvalueAction() 中使用它

根据 Zend Framework 的官方网站

Action Helpers 允许开发人员将运行时和/或按需功能注入任何扩展 Zend_Controller_Action 的 Action Controller。Action Helpers 旨在最小化扩展抽象 Action Controller 以注入通用 Action Controller 功能的必要性。

我假设您想使用动作助手,因为动作助手是专门为此目的而设计的。

步骤 1. 你需要告诉助手代理你的动作助手在哪里,我通常在我的 application.ini 文件中这样做,但你也可以在你的 frontController 或 Bootstrap 文件中这样做。

#if you are using application.ini, in your application.ini add the following
resources.frontController.actionHelperPaths.Custom_Action_Helper = APPLICATION_PATH "/../library/Custom/helpers"

第 2 步:
创建 Action Helper 类,您必须确保该类extends Zend_Controller_Action_Helper_Abstract并将文件放在定义的 helper 目录中Library/Custom/helpers

并像这样创建动作助手

class Custom_Action_Helper_Test extends Zend_Action_Helper_Abstract
{
    public function random()
    {
        return 'foo';
    }
}

现在助手已经准备好在任何控制器中使用了。可以使用以下语法调用它。

echo $this->_helper->Test->random();

希望这可以帮助你。

于 2012-04-24T06:09:13.380 回答
1

将文件和文件夹的名称从application/library/Custom_/Custom_Test.php

application/library/Custom/Test.php

即自定义文件夹中的Test.php

在您的 application.ini 中添加这一行,而不是autoloaderNamespaces.custom = "Custom_"

Autoloadernamespaces[] = "Custom_"

然后只需在您喜欢的任何地方创建它的实例。

于 2012-04-24T05:54:28.887 回答
0
application/library/Custom/Custom_Test.php //underscore not needed

在你的 ini

appnamespace = "Custom_"

课堂应该是这样的

Class Custom_Test{
 public static function foo(){
  return 'hai';
}

}

然后在任何动作中你都可以调用Custom_Test::foo();

于 2012-04-24T05:43:38.830 回答