]> granicus.if.org Git - php/commitdiff
Remove superfluous echos.
authorJeff Welch <whatthejeff@gmail.com>
Sun, 8 Jun 2014 08:09:14 +0000 (04:09 -0400)
committerJeff Welch <whatthejeff@gmail.com>
Sun, 8 Jun 2014 08:09:14 +0000 (04:09 -0400)
ext/exif/tests/exif004.phpt
ext/reflection/tests/ReflectionFunction_isClosure_basic.phpt
ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
ext/reflection/tests/ReflectionFunction_isDisabled_basic.phpt
ext/zlib/tests/gzseek_basic2.phpt
ext/zlib/tests/gzseek_variation1.phpt
ext/zlib/tests/gzseek_variation4.phpt
ext/zlib/tests/gzseek_variation5.phpt

index 229f49e1459b8f29399bae398fa34bb038b8bd85..8797955f8c8b506e91d02dcf91294e32510c006e 100644 (file)
@@ -18,7 +18,7 @@ exif.encode_unicode=ISO-8859-1
   test4.jpg is a 1*1 image that contains Exif tags written by WindowsXP
 */
 $image  = exif_read_data(dirname(__FILE__).'/test4.jpg','',true,false);
-echo var_dump($image['WINXP']);
+var_dump($image['WINXP']);
 ?>
 --EXPECT--
 array(5) {
index eeaf8d382c840c1a90bf013ba52c897411959a06..368464e13033b8f5ae47b51fd38c96005548509d 100644 (file)
@@ -13,6 +13,6 @@ if (!extension_loaded('reflection') || !defined('PHP_VERSION_ID') || PHP_VERSION
 <?php
 $closure = function($param) { return "this is a closure"; };
 $rc = new ReflectionFunction($closure);
-echo var_dump($rc->isClosure());
+var_dump($rc->isClosure());
 --EXPECTF--
 bool(true)
index 31d37a85f179b29201279e162ed5fdd1a3036060..4148fada0cdec99322edcecf0c855e2c8251aa80 100644 (file)
@@ -10,6 +10,6 @@ if (!extension_loaded('reflection') || !defined('PHP_VERSION_ID') || PHP_VERSION
 --FILE-- 
 <?php
 $rc = new ReflectionFunction('ereg');
-echo var_dump($rc->isDeprecated());
+var_dump($rc->isDeprecated());
 --EXPECTF--
 bool(true)
index c71b96b8ef09c0984cf72bb3ae9a3e6c3b8afcac..30189cf4de515178d2a93a1c900a2131a2830b21 100644 (file)
@@ -12,6 +12,6 @@ disable_functions=is_file
 --FILE-- 
 <?php
 $rc = new ReflectionFunction('is_file');
-echo var_dump($rc->isDisabled());
+var_dump($rc->isDisabled());
 --EXPECTF--
 bool(true)
index 82d305d0fb41965a74385dd02d287028183640f7..8e037af139b738b512bb1de4aa5612c310f88bdb 100644 (file)
@@ -24,7 +24,7 @@ gzclose($h);
 echo "\nreading the output file\n";
 $h = gzopen($f, 'r');
 echo gzread($h, strlen($str1))."\n";
-echo var_dump(bin2hex(gzread($h, 20)));
+var_dump(bin2hex(gzread($h, 20)));
 echo gzread($h, strlen($str2))."\n";
 gzclose($h);
 unlink($f);
index b260783f11812d6ab1aded191913144628d652d0..8512b743bd349aa8d8faedfbf5c810b1b69d2c82 100644 (file)
@@ -20,7 +20,7 @@ gzwrite($h, $str2);
 gzclose($h);
 $h = gzopen($f, 'r');
 echo gzread($h, strlen($str1))."\n";
-echo var_dump(bin2hex(gzread($h, 20)));
+var_dump(bin2hex(gzread($h, 20)));
 echo gzread($h, strlen($str2))."\n";
 gzclose($h);
 unlink($f);
index 3d0cf67ceb0e6a80390de63a830c6ba73d49b2ae..529a012141362bbcea0048df76bd6139fcd138f1 100644 (file)
@@ -24,7 +24,7 @@ gzclose($h);
 echo "\nreading the output file\n";
 $h = gzopen($f, 'r');
 echo gzread($h, strlen($str1))."\n";
-echo var_dump(bin2hex(gzread($h, 20)));
+var_dump(bin2hex(gzread($h, 20)));
 echo gzread($h, strlen($str2))."\n";
 gzclose($h);
 unlink($f);
index 93fb19fdbbdc84e8239270679e822cf2130fbcc7..11e4912787ac6f4c433fa5a84340a0eca6098fe9 100644 (file)
@@ -24,7 +24,7 @@ gzclose($h);
 echo "\nreading the output file\n";
 $h = gzopen($f, 'r');
 echo gzread($h, strlen($str1))."\n";
-echo var_dump(bin2hex(gzread($h, 20)));
+var_dump(bin2hex(gzread($h, 20)));
 echo gzread($h, strlen($str2))."\n";
 gzclose($h);
 unlink($f);