gpt4 book ai didi

php - 在带有子类的php中级联使用命名空间

转载 作者:搜寻专家 更新时间:2023-10-31 21:15:25 25 4
gpt4 key购买 nike

我在父类中成功地使用了别名和命名空间类,但它似乎在子类中不可用。实际错误来自自动加载器。奇怪的是该函数确实在父类中工作并且加载正常。如何使通过 use 引入的类在子类中可用?

编辑:食谱是无状态的——在 Base 中将它们设为单例然后将它们作为子类 MyTest 中的成员引用是否有意义?

我有两个文件:

基础.php:

namespace selenium;
use selenium\recipe\Cms as Cms;
class Base extends \PHPUnit_Framework_TestCase
{
public function __construct()
{
Cms::staticfunc(); //works fine
}
}

MyTest.php:

class MyTest extends \selenium\Base
{
public testMyTest()
{
Cms::staticfunc(); //errors here
}
}

最佳答案

来自评论:

i was hoping for a way to cascade the use without duplicating that line among the 20 or so child classes

这是我在 PHP 命名空间方面遇到的最大问题之一,您必须为当前脚本需要访问的每个文件调用 use。这与我们过去必须在某些脚本上调用 require_once 20 次才能引入必要的库的情况相同。

我更喜欢做的是给我的文件命名空间(因为它们驻留在文件系统上,就像 Zend Framework 所做的那样)并使用自动加载器来避免整个困惑。我目前使用 ZF autoloader ,它可以在框架之外使用,或者你也可以使用 SplAutoload 来使用 vanilla PHP 实现。 .

-- 更新--

我有一个我在过去几年中编写的库,它被命名为 Hobis_Api,并且以相同的约定位于文件系统上; ~/projects/projects/dp/hobis/lib/Hobis/Api/*.为了向 Zend_Loader 注册 namespace ,我执行以下操作:

// Be sure to set the include path to include the Zend and Hobis_Api files
// Not sure how your setup is, but would look something like:
set_include_path(get_include_path() . ':' . DIRNAME(__FILE__));

require_once 'Zend/Loader/Autoloader.php';

$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader->registerNamespace(
array(
'Hobis_Api_'
)
);

通常上面的代码会进入一些引导文件,你可以从一个集中的脚本中调用它来注册自动加载器,一次。

现在,如果您的包含路径设置正确,无论何时您引用 Hobis_Api_*,它都会为您自动加载,因此您无需调用 userequire_once,示例用法:

// SomeScript.php

// Notice no requires

// I can make a call to Hobis_Api_Image without error
$image = Hobis_Api_Image;
$image->setHeight(400);

关于php - 在带有子类的php中级联使用命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9912993/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com