Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想打印数组变量 $foo。所以我做了{$foo|@print_r}这个,但它的印刷品就像"{$foo|@print_r}"在首页上一样。
$foo
{$foo|@print_r}
"{$foo|@print_r}"
我使用的是 Oxied eshop,它使用 smarty 作为模板引擎。
至少尝试一下:php 的共同打印数组
<?php print_r ($foo); ?>
其他尝试类似:
<?php {$foo|@debug_print_var} ?>
这可能是由于在 smarty 变量中使用 smarty 引起的,{eval $foo|@debug_print_var}应该打印输出。
{eval $foo|@debug_print_var}