我有一个简单的小 Twig 站点(没有安装 Symfony,所以 config.yml 在这里不相关),这是我的代码:
.htaccess 文件:
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
员工.html:
<html>
<head>
<style type="text/css">
table {
border-collapse: collapse;
}
tr.heading {
font-weight: bolder;
}
td {
border: 1px solid black;
padding: 0 0.5em;
}
</style>
</head>
<body>
<h2>Employees</h2>
<table>
<tr class="heading">
</tr>
{% for d in data %}
<tr>
<td>{{ d.name|escape }}</td>
<td>{{ d.role|escape }}</td>
<td>{{ d.salary|escape }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>
雇员是 varchar(255),角色是 MySQL 中的 varchar(255)。
和我的代码:
<?php
// include and register Twig auto-loader
include 'Twig/Autoloader.php';
Twig_Autoloader::register();
// attempt a connection
try {
$dbh = new PDO('mysql:dbname=employedb1;host=localhost', 'test', 'test');
} catch (PDOException $e) {
echo "Error: Could not connect. " . $e->getMessage();
}
// set error mode
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
// attempt some queries
try {
// execute SELECT query
// store each row as an object
$sql = "SELECT name, role, salary FROM employees";
$sth = $dbh->query($sql);
while ($row = $sth->fetchObject()) {
$data[] = $row;
}
// close connection, clean up
unset($dbh);
// define template directory location
$loader = new Twig_Loader_Filesystem('templates');
// initialize Twig environment
$twig = new Twig_Environment($loader);
// load template
$template = $twig->loadTemplate('employees.html');
// set template variables
// render template
echo $template->render(array (
'data' => $data
));
} catch (Exception $e) {
die ('ERROR: ' . $e->getMessage());
}
?>
它一直有效,直到我对 index.php 进行了以下修改(在 twig 扩展上方添加了注释,实际上不在原始代码中): http: //pastebin.com/QMaQXEip
它一直有效,直到我添加了文本扩展,并产生了这个错误:致命错误:在第 34 行的 /Applications/MAMP/htdocs/employtesttwig/index.php 中找不到类“Twig_Extensions_Extension_Text”(第 34 行指的是上面的 Twig_Extensions_Extension_Text())。
为什么会发生这种情况,我该如何解决这个错误?
谢谢。