Annotation of embedaddon/php/tests/basic/bug46759.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Testing magic_quotes_gpc
        !             3: --INI--
        !             4: display_errors=0
        !             5: magic_quotes_gpc=1
        !             6: --GET--
        !             7: a='&b="&c=\"
        !             8: --FILE--
        !             9: <?php 
        !            10: 
        !            11: foreach ($_GET AS $key => $value)
        !            12: {
        !            13:        echo $key . ": " . $value . "\n";
        !            14: }
        !            15: 
        !            16: ?>
        !            17: --EXPECT--
        !            18: a: \'
        !            19: b: \"
        !            20: c: \\\"

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