在smarty中使用print_r函数 打印异常

来源:6-6 Smarty函数的使用

EnzoLiu

2016-12-27 21:38

实际上在smarty中不需要使用print_r函数,但smarty中支持php的内置函数   按理说也是可以正常使用的,于是...测试了下

<?php
	require './libs/Smarty.class.php';
	$smarty = new Smarty();
	$smarty->setTemplateDir('tpl');
	$smarty->setCompileDir('template_c');
	$smarty->setCacheDir('cache');
	$smarty->caching = false;
	$smarty->cache_lifetime = 120;
	$smarty->display('test.tpl');
?>
test.tpl中的代码:
{"a"|print_r}

打印结果是 a1

为何?不应该是a吗?

写回答 关注

1回答

  • EnzoLiu
    2016-12-27 21:46:44

    纳闷之余,去翻看了一下smarty编译后的php程序发现了如下代码:

    function content_58626d30228a24_11924857 (Smarty_Internal_Template $_smarty_tpl) {
        echo print_r("a");
    }

    原来是prinr_r打印后返回了一个true,后面的echo又跟上来打印true,php自动将true转变成了1给打印了。。

    ...

    解决了

MVC架构模式分析与设计

通过学习MVC理论知识,由浅入深带您实现人生第一个MVC框架

82396 学习 · 929 问题

查看课程

相似问题