Home >Backend Development >PHP Tutorial >为什么在thinkphp里面model用echo不能输出呢?

为什么在thinkphp里面model用echo不能输出呢?

WBOY
WBOYOriginal
2016-06-06 20:33:511468browse

为什么在thinkphp里面model用echo不能输出呢?
model里面代码出错,think报错未知错误,想echo 错误信息.居然没用这是为什么呢

回复内容:

为什么在thinkphp里面model用echo不能输出呢?
model里面代码出错,think报错未知错误,想echo 错误信息.居然没用这是为什么呢

不能在model里echo这是什么鬼。。 问题估计是处在其他地方,比如你跨域访问? 这样echo肯定看不到嘛

用dump试试

你可以用

<code>echo $oneVar;
die();
</code>

model里输出不起作用,很有可能是在加载view的时候,先将输出缓冲区清除了(echo的东西就没了),然后将view输出映射到一个变量,之后框架还会对view的输出做一些处理。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn