Lines Matching refs:array
5 /* Prototype : string vsprintf(string format, array args)
17 // defining array of float formats
26 // Each sub array contains non float values which correspond to each format in $format
27 $args_array = array(
29 // array of int values
30 array(2, -2, +2,
36 // array of strings
37 array(" ", ' ', 'hello',
44 array( array(0), array(1, 2), array(-1, -1),
45 array("123"), array('123'), array('-123'), array("-123"),
46 array(true), array(false), array(TRUE), array(FALSE),
47 array("123hello"), array("1", "2"), array('123hello'), array(12=>"12twelve"),
48 array("3"), array("4"), array("1"), array("2") ),
50 // array of boolean data
51 array( true, TRUE, false,
59 // looping to test vsprintf() with different float formats from the above $format array
60 // and with non-float values from the above $args_array array