我正在使用Twig模板语言开发一个小型的模板驱动网站。
一切都适用于基础知识 - 遵循http://devzone.zend.com/article/13633-Creating-Web-Page-Templates-with-PHP-and-Twig-part-1-
中的说明然而,我遇到两件事情有困难;一,我希望我的脚本中的templates目录之外的.tpl(模板)文件,以及两个,我如何在PHPMyadmin中格式化货币?
这是我的剧本:
cars.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文件存储在模板目录之外,如何将其集成到我正在运行的脚本中?
否则,一切进展顺利,这个模板应该对我的小型网站有用!
答案 0 :(得分:0)
首先:你应该在MySQL中使用适当的字段类型,例如价格为DECIMAL
。
您可以在Twig_Loader_Filesystem
中定义模板目录。您无法在此目录之外加载模板 - 但您可以修改构造函数中给出的路径。
似乎没有内置任何类似内容。
如果这足够,您可以使用过滤器number_format
。
另一个解决方案是创建一个自己的过滤器或功能,并在那里做魔术。您的过滤器/函数可以调用PHP函数money_format()
,它可以完成大部分工作。