mirror of
https://github.com/php/php-src.git
synced 2024-11-26 19:33:55 +08:00
d30cd7d7e7
Closes GH-5590
29 lines
543 B
PHP
29 lines
543 B
PHP
--TEST--
|
|
ZE2 A protected method can only be called inside the class
|
|
--FILE--
|
|
<?php
|
|
|
|
class pass {
|
|
protected function fail() {
|
|
echo "Call fail()\n";
|
|
}
|
|
|
|
public function good() {
|
|
$this->fail();
|
|
}
|
|
}
|
|
|
|
$t = new pass();
|
|
$t->good();
|
|
$t->fail();// must fail because we are calling from outside of class pass
|
|
|
|
echo "Done\n"; // shouldn't be displayed
|
|
?>
|
|
--EXPECTF--
|
|
Call fail()
|
|
|
|
Fatal error: Uncaught Error: Call to protected method pass::fail() from global scope in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|