0

我正在使用 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 文件存储在模板目录之外,如何将其集成到我正在运行的脚本中?

否则,一切顺利,这个模板应该对我的小型站点有用!

4

1 回答 1

0

首先:您应该在 MySQL 中使用适当的字段类型,例如DECIMAL价格。

模板目录之外的模板

您在Twig_Loader_Filesystem. 您不能在此目录之外加载模板 - 但是您可以修改构造函数中给出的路径。

格式化货币

似乎没有内置任何类似的东西。number_format如果足够的话,您可以使用过滤器。另一种解决方案是创建一个自己的过滤器或函数并在那里发挥作用。您的过滤器/函数可以调用 PHP 函数money_format(),它为您完成大部分工作。

于 2012-03-15T11:43:53.790 回答