我已经使用composer安装了https://github.com/pug-php/pug,现在我的项目中有一个子目录vendor / pug-php / pug,但我无法弄清楚如何使用它。
如果我尝试
$pug = new Pug();
我显然得到了
未找到“Pug”类
我该如何使用它?
答案 0 :(得分:2)
如果您使用composer安装了pug,则应在供应商文件夹中找到autoloader.php。
这使它起作用:
use Pug\Pug;
include('vendor/autoload.php');
答案 1 :(得分:1)
看一下帕格的例子:
https://github.com/pug-php/pug/blob/master/example/index.php
这显示了您如何单独使用它。
您的问题中缺少自动加载器,您可以在此处找到:
https://github.com/pug-php/pug/blob/master/example/bootstrap.php