2005-08-05 17:02:14 +08:00
|
|
|
--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"
|
|
|
|
}
|
|
|
|
|
2020-09-21 17:07:42 +08:00
|
|
|
Warning: Object of class Foo could not be converted to int in %s on line %d
|
2005-08-05 17:02:14 +08:00
|
|
|
int(1)
|
|
|
|
|
2020-09-21 17:07:42 +08:00
|
|
|
Warning: Object of class Foo could not be converted to float in %s on line %d
|
2005-08-05 17:02:14 +08:00
|
|
|
float(1)
|