Diff for /embedaddon/php/ext/standard/tests/general_functions/var_export_basic5.phpt between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:48:04 version 1.1.1.2, 2014/06/15 20:03:59
Line 1 Line 1
 --TEST--  --TEST--
 Test var_export() function with valid arrays  Test var_export() function with valid arrays
   --INI--
   serialize_precision=17
 --FILE--  --FILE--
 <?php  <?php
 /* Prototype  : mixed var_export(mixed var [, bool return])  /* Prototype  : mixed var_export(mixed var [, bool return])
Line 233  string(20) "array ( Line 235  string(20) "array (
 --Iteration: array(10.5, 5.6) --  --Iteration: array(10.5, 5.6) --
 array (  array (
   0 => 10.5,    0 => 10.5,
  1 => 5.6,  1 => 5.5999999999999996,
 )  )
 array (  array (
   0 => 10.5,    0 => 10.5,
  1 => 5.6,  1 => 5.5999999999999996,
 )  )
string(34) "array (string(49) "array (
   0 => 10.5,    0 => 10.5,
  1 => 5.6,  1 => 5.5999999999999996,
 )"  )"
   
   
Line 274  string(41) "array ( Line 276  string(41) "array (
   1 => 'test',    1 => 'test',
 )"  )"
   
 ===DONE===  
   
   ===DONE===

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


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