私はローカルホストでTwigをテストしてきました...ここのコードはこの質問と同じですが、クエリは異なります:
<?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 manufacturer, model, modelinfo FROM automobiles WHERE id = '4' ";
$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.html');
// set template variables
// render template
echo $template->render(array (
'data' => $data
));
} catch (Exception $e) {
die ('ERROR: ' . $e->getMessage());
}
?>
私は3つのレコードを持っています。TwigとSmartyを比較していたので、存在しないレコードをクエリして、Twigのエラー処理がどのようなものかを確認することにしました。次のエラーメッセージが表示されます。
Notice: Undefined variable: data in /Applications/MAMP/htdocs/mysite/twigtesting.php on line 42
確かに「データが見つかりません」という通知が表示されるはずですか、それとも私はここで間違っていますか?未定義の変数データとは、次のことを指します。
// set template variables
// render template
echo $template->render(array (
'data' => $data
));
なぜこうなった?私はTwigを初めて使用し、彼らのサイトからの最新のビルドを使用しています。