mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
fb4554e431
We previously couldn't increase the error level here because it was coupled to comparison handling. This is no longer the case in PHP 8.
31 lines
486 B
PHP
31 lines
486 B
PHP
--TEST--
|
|
Bug #33999 (object remains object when cast to int)
|
|
--INI--
|
|
error_reporting=4095
|
|
--FILE--
|
|
<?php
|
|
class Foo {
|
|
public $bar = "bat";
|
|
}
|
|
|
|
$foo = new Foo;
|
|
var_dump($foo);
|
|
|
|
$bar = (int)$foo;
|
|
var_dump($bar);
|
|
|
|
$baz = (float)$foo;
|
|
var_dump($baz);
|
|
?>
|
|
--EXPECTF--
|
|
object(Foo)#1 (1) {
|
|
["bar"]=>
|
|
string(3) "bat"
|
|
}
|
|
|
|
Warning: Object of class Foo could not be converted to int in %s on line %d
|
|
int(1)
|
|
|
|
Warning: Object of class Foo could not be converted to float in %s on line %d
|
|
float(1)
|