blob: a73517c504c564b61b1180012cd7f90971494639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--TEST--
The (real) cast is deprecated
--FILE--
<?php
var_dump((real) 42);
?>
--EXPECTF--
Deprecated: The (real) cast is deprecated, use (float) instead in %s on line %d
float(42)
|