Annotation of embedaddon/php/sapi/cgi/tests/008.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: syntax highlighting
        !             3: --SKIPIF--
        !             4: <?php include "skipif.inc"; ?>
        !             5: --FILE--
        !             6: <?php
        !             7: 
        !             8: include "include.inc";
        !             9: 
        !            10: $php = get_cgi_path();
        !            11: reset_env_vars();
        !            12: 
        !            13: $filename = dirname(__FILE__)."/008.test.php";
        !            14: $code = '
        !            15: <?php
        !            16: $test = "var"; //var
        !            17: /* test class */
        !            18: class test {
        !            19:        private $var = array();
        !            20: 
        !            21:        public static function foo(Test $arg) {
        !            22:                echo "hello";
        !            23:                var_dump($this);
        !            24:        }
        !            25: }
        !            26: 
        !            27: $o = new test;
        !            28: ?>
        !            29: ';
        !            30: 
        !            31: file_put_contents($filename, $code);
        !            32: 
        !            33: var_dump(`"$php" -n -s "$filename"`);
        !            34: var_dump(`"$php" -n -s "unknown"`);
        !            35: 
        !            36: @unlink($filename);
        !            37: 
        !            38: echo "Done\n";
        !            39: ?>
        !            40: --EXPECTF--    
        !            41: string(%d) "X-Powered-By: PHP/%s
        !            42: Content-type: text/html%r; charset=.*|%r
        !            43: 
        !            44: <code><span style="color: #000000">
        !            45: <br /><span style="color: #0000BB">&lt;?php<br />$test&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"var"</span><span style="color: #007700">;&nbsp;</span><span style="color: #FF8000">//var<br />/*&nbsp;test&nbsp;class&nbsp;*/<br /></span><span style="color: #007700">class&nbsp;</span><span style="color: #0000BB">test&nbsp;</span><span style="color: #007700">{<br />&nbsp;&nbsp;&nbsp;&nbsp;private&nbsp;</span><span style="color: #0000BB">$var&nbsp;</span><span style="color: #007700">=&nbsp;array();<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;static&nbsp;function&nbsp;</span><span style="color: #0000BB">foo</span><span style="color: #007700">(</span><span style="color: #0000BB">Test&nbsp;$arg</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"hello"</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$this</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br />}<br /><br /></span><span style="color: #0000BB">$o&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">test</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?&gt;<br /></span>
        !            46: </span>
        !            47: </code>"
        !            48: string(%d) "Status: 404 Not Found
        !            49: X-Powered-By: PHP/%s
        !            50: Content-type: text/html%r; charset=.*|%r
        !            51: 
        !            52: No input file specified.
        !            53: "
        !            54: Done

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