Annotation of embedaddon/php/ext/standard/tests/strings/vsprintf_basic8.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test vsprintf() function : basic functionality - octal format
        !             3: --FILE--
        !             4: <?php
        !             5: /* Prototype  : string vsprintf(string $format , array $args)
        !             6:  * Description: Return a formatted string 
        !             7:  * Source code: ext/standard/formatted_print.c
        !             8: */
        !             9: 
        !            10: echo "*** Testing vsprintf() : basic functionality - using octal format ***\n";
        !            11: 
        !            12: // Initialise all required variables
        !            13: $format = "format";
        !            14: $format1 = "%o";
        !            15: $format2 = "%o %o";
        !            16: $format3 = "%o %o %o";
        !            17: $arg1 = array(021);
        !            18: $arg2 = array(021,0347);
        !            19: $arg3 = array(021,0347,05678);
        !            20: 
        !            21: var_dump( vsprintf($format1,$arg1) );
        !            22: var_dump( vsprintf($format2,$arg2) );
        !            23: var_dump( vsprintf($format3,$arg3) );
        !            24: 
        !            25: echo "Done";
        !            26: ?>
        !            27: --EXPECTF--
        !            28: *** Testing vsprintf() : basic functionality - using octal format ***
        !            29: string(2) "21"
        !            30: string(6) "21 347"
        !            31: string(10) "21 347 567"
        !            32: Done

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