繁体   English   中英

最简单:测试echo语句?

[英]Simpletest: Testing echo statements?

我刚刚用最简单的方法测试了一些PHP文件,发现它与实际输出(回声)任何东西的功能不能很好地配合使用。

那么,在PHP中不使用ob_buffer()情况下,我可以做些什么来测试回声的功能吗?

谢谢

如果要测试输出本身的有效性,则否。 不是没有输出缓冲区。 但是,您可以使用JavaScript对其进行测试。 您甚至可以通过将输出通过ajax返回到另一个线程来以最简单的方式对其进行测试。

迂回? 哦耶宝宝。

使用以下完全愚蠢的方法应该可以为您提供所需的信息。 嘿...写起来很有趣:)

<?php
/**
 * The function which output you want to test.
 *
 * @param string $arg1
 * @param string $arg2
 */
function function_with_echo($arg1, $arg2) {
    $c = array();
    echo "X";
    foreach (range(0,2) as $i) {
        print $i * 2 . $arg2;
    }
    echo "Yir $arg1";
}

/**
 * Stupid, too big, ugly function that takes a function and creates a new
 * function with two underscores prefixed (__) where all echo and print
 * statements instead are collected into a temporary variable and returned. 
 * Does not work for functions that already returns something, although 
 * that could be fixed too!
 *
 * @param string $function_name
 */
function change_output_to_return($function_name) {
    $r = new ReflectionFunction($function_name);
    $lines = array_slice(
        file($r->getFileName()),
        $r->getStartLine() - 1,
        $r->getEndLine() - $r->getStartLine() + 1
    );
    $first = array_shift($lines);
    array_unshift($lines, $first, '$__temp = "";' . "\n");
    $last = array_pop($lines);
    array_push($lines, 'return $__temp;' . "\n", $last);
    $code = "<?php " . implode("", $lines);
    $echo_free_code = '';
    foreach(token_get_all($code) as $token) {
        if(is_array($token)) {
           if (in_array(token_name($token[0]), array('T_ECHO', 'T_PRINT'))) {
               $echo_free_code .= '$__temp .= ';
           } else {
               $echo_free_code .= $token[1];
           }
        } else {
            $echo_free_code .= $token;
        }
    }
    $echo_free_code = str_replace($function_name, "__$function_name", $echo_free_code);
    eval("?>$echo_free_code");
}

// Creates a function called "__function_with_echo" that returns a string
// instead of outputting it using "print" and "echo".
change_output_to_return('function_with_echo');

// Stuff contains the outputted data from "function_with_echo".
$stuff = __function_with_echo('fun', 'stuff');
var_dump($stuff);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM