1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 12:13:02 +02:00
Files
archived-php-src/ext/standard/tests/file/fstat_error.phpt

22 lines
400 B
PHP

--TEST--
Test function fstat() by calling it more than or less than its expected arguments
--FILE--
<?php
$fp = fopen (__FILE__, 'r');
$extra_arg = 'nothing';
var_dump(fstat( $fp, $extra_arg ) );
var_dump(fstat());
fclose($fp);
?>
===DONE===
--EXPECTF--
Warning: Wrong parameter count for fstat() in %s on line %d
NULL
Warning: Wrong parameter count for fstat() in %s on line %d
NULL
===DONE===