$ a =新PharData($ tar_achive); cakephp3

时间:2017-06-11 04:49:36

标签: php cakephp-3.x phar

在Cakephp3控制器中加载内置PharData PHP类时出现以下错误

Error: Class 'App\Controller\PharData' not found

我这样叫PharData:

$a = new PharData($tar_achive);

(PharData类在Cakephp3之外使用简单的php脚本时可以正常工作)

我怎么能告诉cakephp3使用内置的PHP类?

1 个答案:

答案 0 :(得分:1)

尝试使用带斜杠的类,这将告知它是在PHP类中构建的

$a = new \PharData($tar_achive);