--TEST--
Test vfprintf() function : usage variations - char formats with non-char values
--FILE--
<?php
/* Prototype  : int vfprintf  ( resource $handle  , string $format , array $args  )
 * Description: Write a formatted string to a stream
 * Source code: ext/standard/formatted_print.c
*/

/*
 * Test vfprintf() when different char formats and non-char values are passed to 
 * the '$format' and '$args' arguments of the function
*/

echo "*** Testing vfprintf() : char formats and non-char values ***\n";

// defining an array of various char formats
$formats 
  
'%c %+c %-c 
   %lc %Lc %4c %-4c
   %10.4c %-10.4c %04c %04.4c
   %\'10c %\'10c %\'$10c %\'_10c
   %3$c %4$c %1$c %2$c'
;

// Arrays of non char values for the format defined in $format. 
// Each sub array contains non char values which correspond to each format in $format
$args_array = array(

  
// array of float values
  
array(65.8, -65.8, +66.8,
        
93.2, -93.2126.8, -126.49,
        
35.44, -35.6832.99, -32.00,
        -
61.5161.5150.49, -54.50,
        
83.33, +84.4481.1182.22),

  
// array of int values
  
array(65, -65, +66,
        
169, -169126, -126,
        
35, -3532, -32,
        -
616150, -54,
        
83, +848182),

  
// array of strings
  
array(" "' ''hello',
        
'123hello'"123hello"'-123hello''+123hello',
        
"\12345678hello""-\12345678hello"'0123456hello''h123456ello',
        
"1234hello""hello\0world""NULL""true",
        
"3""4"'1''2'),

  
// different arrays
  
array( array(0), array(12), array(-1, -1),
         array(
"123"), array('123'), array('-123'), array("-123"),
         array(
true), array(false), array(TRUE), array(FALSE),
         array(
"123hello"), array("1""2"), array('123hello'), array(12=>"12twelve"),
         array(
"3"), array("4"), array("1"), array("2") ),

  
// array of boolean data
  
array( trueTRUEfalse,
         
TRUE0FALSE1,
         
truefalseTRUEFALSE,
         
0110,
         
1TRUE0FALSE),
  
);

/* creating dumping file */
$data_file dirname(__FILE__) . '/dump.txt';
if (!(
$fp fopen($data_file'wt')))
   return;

// looping to test vfprintf() with different char formats from the above $format array
// and with non-char values from the above $args_array array
$counter 1;
foreach(
$args_array as $args) {
  
fprintf($fp"\n-- Iteration %d --\n",$counter);
  
vfprintf($fp$formats$args);
  
$counter++;
}

fclose($fp);
print_r(file_get_contents($data_file));
echo 
"\n";

unlink($data_file);

?>
===DONE===
--EXPECT--
*** Testing vfprintf() : char formats and non-char values ***

-- Iteration 1 --
A ¿ B 
   ] c ~ ‚
   # Ý   à
   Ã = 2 Ê
   B ] A ¿
-- Iteration 2 --
A ¿ B 
   © c ~ ‚
   # Ý   à
   Ã = 2 Ê
   B © A ¿
-- Iteration 3 --
   
   { c … {
     @ 
   Ò   
    {  
-- Iteration 4 --
   
    c  
      
      
      
-- Iteration 5 --
   
    c  
      
      
      
===DONE===