mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
15 lines
281 B
PHP
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)
|