mirror of
https://github.com/php/php-src.git
synced 2026-03-31 04:32:19 +02:00
The normal function already throws TypeError through the usual zpp mechanism, but the VM implementation handles this manually and has not been updated.
54 lines
870 B
PHP
54 lines
870 B
PHP
--TEST--
|
|
get_class() tests
|
|
--FILE--
|
|
<?php
|
|
|
|
class foo {
|
|
function bar () {
|
|
var_dump(get_class());
|
|
}
|
|
function testNull ()
|
|
{
|
|
try {
|
|
var_dump(get_class(null));
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
}
|
|
}
|
|
|
|
class foo2 extends foo {
|
|
}
|
|
|
|
$f1 = new foo;
|
|
$f2 = new foo2;
|
|
|
|
$f1->bar();
|
|
$f2->bar();
|
|
|
|
var_dump(get_class());
|
|
try {
|
|
var_dump(get_class("qwerty"));
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
var_dump(get_class($f1));
|
|
var_dump(get_class($f2));
|
|
|
|
$f1->testNull();
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
string(3) "foo"
|
|
string(3) "foo"
|
|
|
|
Warning: get_class() called without object from outside a class in %s on line %d
|
|
bool(false)
|
|
get_class() expects parameter 1 to be object, string given
|
|
string(3) "foo"
|
|
string(4) "foo2"
|
|
get_class() expects parameter 1 to be object, null given
|
|
Done
|