如何使用 %title 而不是 $text->title

How to can I user %title instead of $text->title

我想简化我的生活,而不是每次都使用 <?php echo $text->title ?> 我想使用 {%title} 并获得相同的结果。我应该怎么做?

我不一定想要这个表达式,而是类似的东西。

您可以使用 echo 的简短表达。

<?=$text->title?>

此外,

在你的 php.ini 中更改 short_open_tag = Off 如果它是这样的:

short_open_tag = On