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

1.1     ! misho       1: --TEST--
        !             2: Test vsprintf() function : basic functionality - char 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 char format ***\n";
        !            11: 
        !            12: // Initialise all required variables
        !            13: $format = "format";
        !            14: $format1 = "%c";
        !            15: $format2 = "%c %c";
        !            16: $format3 = "%c %c %c";
        !            17: $arg1 = array(65);
        !            18: $arg2 = array(65,66);
        !            19: $arg3 = array(65,66,67);
        !            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 char format ***
        !            29: string(1) "A"
        !            30: string(3) "A B"
        !            31: string(5) "A B C"
        !            32: Done

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