2011-06-29 41 views
1

我在Apache 2.28上運行一個由PHP/MySQL支持的事件站點。 我可以根據http://devzone.zend.com/article/13633獲取HTML表格。樹枝框架和日期時間錯誤

對於本地localhost上的這個網站,我使用的是www上提到的Twig框架。樹枝項目。

我的代碼:

<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>Events</h2> 
    <table> 
     <tr class="heading"> 
     <td>Event time</td> 
     <td>Event name</td> 
     </tr> 
     {% for d in data %} 
     <tr> 
     <td>{{ d.evtime|escape }}</td> 
     <td>{{ d.evname|escape }}</td> 
     </tr> 
     {% endfor %} 
    </table> 
    </body> 
</html> 

// PHP的文件低於

<?php 
// include and register Twig auto-loader 
include 'Twig/Autoloader.php'; 
Twig_Autoloader::register(); 

// attempt a connection 
try { 
    $dbh = new PDO('mysql:dbname=world;host=localhost', 'root', 'MYPASS'); 
} 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 myeventdb"; 
    $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('countries.tmpl'); 

    // set template variables 
    // render template 
    echo $template->render(array (
    'data' => $data 
)); 

} catch (Exception $e) { 
    die ('ERROR: ' . $e->getMessage()); 
} 
?> 

但是,我不能讓組織

內容是從本地的MySQL數據庫中提取日期時間顯示爲這爲我的事件: 1:30 pm地理類

相反,它顯示爲 13:30:00地理課

這是爲什麼,什麼我需要修復它,細枝語法中? 我對此很新,我看了一下文檔,但網站上並沒有太多關於它的文章。

乾杯。

回答

6

因此,腳本正在顯示13:30:00,因爲這是數據庫中出現的內容 - 您沒有在任何地方格式化日期。

在你的嫩枝模板,你可以使用一個date filter格式化日期根據自己的喜好,根據PHP date function formatting

{{ d.evtime|date('g:ia')|escape }} 

如果你想提前做的格式,只需使用的date組合和strtotime

$formatted_time = date('g:ia',strtotime($unformatted_time));