我正在使用 Twig 模板语言来开发一个小型的、模板驱动的网站。
一切都适用于基础 - 按照http://devzone.zend.com/article/13633-Creating-Web-Page-Templates-with-PHP-and-Tw ig-part-1- 中的说明进行操作
但是,我在两件事上遇到了麻烦;一,我希望我的 .tpl(模板)文件在我的脚本中的模板目录之外,二,我将如何在 PHPMyadmin 中格式化货币?
这是我的脚本:
汽车.tpl:
<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>Countries and capitals</h2>
<table>
<tr class="heading">
<td>Manufacturer</td>
<td>Specification</td>
<td>Price</td>
</tr>
{% for d in data %}
<tr>
<td>{{ d.car|escape }}</td>
<td>{{ d.spec|escape }}</td>
<td>{{ d.price|escape }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>
这是 PHP Twig 脚本:
<?php
// include and register Twig auto-loader
include 'Twig/Autoloader.php';
Twig_Autoloader::register();
// attempt a connection
try {
$dbh = new PDO('mysql:dbname=whatcar1;host=localhost', 'root', 'PASSWORD');
} 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 * FROM vehicles";
$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('cars.tpl');
// set template variables
// render template
echo $template->render(array (
'data' => $data
));
} catch (Exception $e) {
die ('ERROR: ' . $e->getMessage());
}
?>
数据库以下列方式存储,具有以下字段:
car VARCHAR 255
spec VARCHAR 255
price VARCHAR 255
字段价格不显示,即使 SQL 查询选择了所有字段。
我哪里出错了,我应该如何尝试修复这个错误?另外,我将 .tpl 文件存储在模板目录之外,如何将其集成到我正在运行的脚本中?
否则,一切顺利,这个模板应该对我的小型站点有用!