gpt4 book ai didi

mysql - Twig 和截断文本

转载 作者:行者123 更新时间:2023-11-30 23:57:00 24 4
gpt4 key购买 nike

我在 MAMP 上的本地主机上创建了这个简单的 Twig 页面:

   <html>
<head>
<style type="text/css">
table {
border-collapse: collapse;
}
tr.heading {
font-weight: bolder;
}
td {
border: 0.5px solid black;
padding: 0 0.5em;
}
</style>
</head>
<body>
<h2>Automobiles</h2>
<table>
<tr class="heading">
<td>Vehicle</td>
<td>Model</td>
<td>Price</td>
</tr>
{% for d in data %}
<tr>
<td>{{ d.manufacturer|escape }}</td>
<td>{{ d.model|escape }}</td>
<td>{{ d.modelinfo|raw }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>

这是它背后的代码:

    <?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, price FROM automobiles";
$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());
}
?>

但是,我打算截断 modelinfo 字段中的文本,我相信这可以在 MySQL 中使用 select LEFT 函数来完成,但我应该如何修改查询?

感谢所有帮助!

最佳答案

您可以像这样在 Twig 模板中截断文本:

{{ d.modelinfo[:10] }}

这应该返回 d.modelinfo 中的前 10 个字符。

看看 slice filter文档页面。

关于mysql - Twig 和截断文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14817159/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com