0

错误:

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


我的文件夹结构:

- core
  - DI.php
- index.php

索引.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 被窃听了吗?谢谢。

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

4

1 回答 1

0

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

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

use \core;
$di = new DI();
于 2014-04-03T11:12:26.323 回答