HHVM,自动加载和命名空间

时间:2014-04-03 11:09:44

标签: php autoload hhvm

错误:

\ n致命错误:未定义类:第7行/home/runeko/www/index.php中的DI


我的文件夹结构:

- core
  - DI.php
- index.php

的index.php:

<?php
set_include_path( __DIR__ );
spl_autoload_extensions('.php');
spl_autoload_register();

use \core;
$di = new DI();
//i tested too:  $di = \core\DI();

DI.php

<?php

namespace \core;

class DI {
}

HHVM版本:

root@akai:/var/log/hhvm# hhvm --version
HipHop VM 3.0.0-dev+2014.04.03 (rel)
Compiler: heads/master-0-g6398683df312015ebc40066dfe4b9242cc933a60
Repo schema: b4303360e484eee1f582365b9994eee150d450b0

是hhvm窃听?感谢。

解决方案: * 此功能尚未实现 * - &gt; https://github.com/facebook/hhvm/issues/2308

1 个答案:

答案 0 :(得分:0)

http://docs.hhvm.com/manual/en/language.types.object.php

根据官方文档,对象实例化没有像在PHP中那样改变,你需要使用new关键字

use \core;
$di = new DI();