php-src/ext/standard/tests/file/file_binary_text_deprecated.phpt
2021-07-08 15:34:51 +02:00

15 lines
281 B
PHP

--TEST--
The FILE_BINARY and FILE_TEXT constants are deprecated
--FILE--
<?php
var_dump(FILE_BINARY);
var_dump(FILE_TEXT);
?>
--EXPECTF--
Deprecated: Constant FILE_BINARY is deprecated in %s on line %d
int(0)
Deprecated: Constant FILE_TEXT is deprecated in %s on line %d
int(0)