Annotation of embedaddon/php/sapi/cli/tests/php_cli_server_002.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: $_SERVER variable
        !             3: --INI--
        !             4: allow_url_fopen=1
        !             5: --SKIPIF--
        !             6: <?php
        !             7: include "skipif.inc"; 
        !             8: ?>
        !             9: --FILE--
        !            10: <?php
        !            11: include "php_cli_server.inc";
        !            12: php_cli_server_start('var_dump($_SERVER["DOCUMENT_ROOT"], $_SERVER["SERVER_SOFTWARE"], $_SERVER["SERVER_NAME"], $_SERVER["SERVER_PORT"]);');
        !            13: var_dump(file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS));
        !            14: ?>
        !            15: --EXPECTF--    
        !            16: string(%d) "string(%d) "%stests"
        !            17: string(%d) "PHP %s Development Server"
        !            18: string(%d) "localhost"
        !            19: string(%d) "8964"
        !            20: "

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>