php-src/ext/standard/tests/strings/vsprintf_basic2.phpt
Steph Fox 87fac43ac0 - killed off UEXPECT
- html_translation_table and setlocale tests are no longer relevant
- there are a number of ANSI-encoded files. Is this deliberate?
2008-05-27 10:50:48 +00:00

37 lines
875 B
PHP

--TEST--
Test vsprintf() function : basic functionality - integer format
--FILE--
<?php
/* Prototype : string vsprintf(string $format , array $args)
* Description: Return a formatted string
* Source code: ext/standard/formatted_print.c
*/
/*
* Testing vsprintf() : basic functionality - using integer format
*/
echo "*** Testing vsprintf() : basic functionality - using integer format ***\n";
// Initialise all required variables
$format = "format";
$format1 = "%d";
$format2 = "%d %d";
$format3 = "%d %d %d";
$arg1 = array(111);
$arg2 = array(111,222);
$arg3 = array(111,222,333);
var_dump( vsprintf($format1,$arg1) );
var_dump( vsprintf($format2,$arg2) );
var_dump( vsprintf($format3,$arg3) );
echo "Done";
?>
--EXPECT--
*** Testing vsprintf() : basic functionality - using integer format ***
unicode(3) "111"
unicode(7) "111 222"
unicode(11) "111 222 333"
Done