获取 PHP CodeIgniter 中回显字符串的值?
我需要在 CodeIgniter 或 PHP 中获取回显字符串的值。
例如
class SampleClass {
function myFunc() {
echo "true";
}
}
class TestSampleClass {
$obj = new SampleClass();
function test_myFunc() {
$obj->myFunc();
// I want to get the 'true' string to be compared..
// how can i get the string 'true' that is echoed in myFunc()
}
}
这可能吗?
请帮忙。
多谢。
I need to get the value of echo-ed string in CodeIgniter or PHP.
For Example
class SampleClass {
function myFunc() {
echo "true";
}
}
class TestSampleClass {
$obj = new SampleClass();
function test_myFunc() {
$obj->myFunc();
// I want to get the 'true' string to be compared..
// how can i get the string 'true' that is echoed in myFunc()
}
}
Is it possible?
Please help.
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然我认为这个问题与 CodeIgniter 无关,但您可以通过捕获缓冲区并将其发送到某个回调函数以明确检查输出来完成此
操作您可以看到输出: http://codepad.org/LxEoh37W
While i think this question has nothing to do with CodeIgniter, you could do it by capture the buffer, and send it into some callback function to explicitely inspect the output
You can see the out put : http://codepad.org/LxEoh37W