mirror of
https://github.com/php/php-src.git
synced 2026-04-17 21:11:02 +02:00
PHP requires integer typehints to be written "int" and does not allow "integer" as an alias. This changes type error messages to match the actual type name and avoids confusing messages like "must be of the type integer, integer given".
45 lines
928 B
PHP
45 lines
928 B
PHP
--TEST--
|
|
Test function readgzfile() by substituting argument 2 with string values.
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
|
|
$filename = $filename = dirname(__FILE__)."/004.txt.gz";
|
|
|
|
|
|
$heredoc = <<<EOT
|
|
hello world
|
|
EOT;
|
|
|
|
$variation_array = array(
|
|
'string DQ' => "string",
|
|
'string SQ' => 'string',
|
|
'mixed case string' => "sTrInG",
|
|
'heredoc' => $heredoc
|
|
);
|
|
|
|
|
|
foreach ( $variation_array as $var ) {
|
|
var_dump(readgzfile( $filename, $var ) );
|
|
}
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
|
|
Warning: readgzfile() expects parameter 2 to be int, string given in %s on line %d
|
|
NULL
|
|
|
|
Warning: readgzfile() expects parameter 2 to be int, string given in %s on line %d
|
|
NULL
|
|
|
|
Warning: readgzfile() expects parameter 2 to be int, string given in %s on line %d
|
|
NULL
|
|
|
|
Warning: readgzfile() expects parameter 2 to be int, string given in %s on line %d
|
|
NULL
|
|
===DONE===
|