mirror of
https://github.com/php/php-src.git
synced 2024-12-20 15:30:38 +08:00
5f0248304e
This reverts commit dc9991b167
.
21 lines
397 B
PHP
21 lines
397 B
PHP
--TEST--
|
|
Incompatible context call (non-internal function)
|
|
--INI--
|
|
error_reporting=E_ALL
|
|
--FILE--
|
|
<?php
|
|
|
|
class A {
|
|
function foo() { var_dump(get_class($this)); }
|
|
}
|
|
class B {
|
|
function bar() { A::foo(); }
|
|
}
|
|
$b = new B;
|
|
$b->bar();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Non-static method A::foo() should not be called statically, assuming $this from incompatible context in %s on line %d
|
|
string(1) "B"
|