File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / classes / protected_001b.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 5 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

    1: --TEST--
    2: ZE2 A protected method can only be called inside the class
    3: --SKIPIF--
    4: <?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
    5: --FILE--
    6: <?php
    7: 
    8: class pass {
    9: 	protected function fail() {
   10: 		echo "Call fail()\n";
   11: 	}
   12: 
   13: 	public function good() {
   14: 		$this->fail();
   15: 	}
   16: }
   17: 
   18: $t = new pass();
   19: $t->good();
   20: $t->fail();// must fail because we are calling from outside of class pass
   21: 
   22: echo "Done\n"; // shouldn't be displayed
   23: ?>
   24: --EXPECTF--
   25: Call fail()
   26: 
   27: Fatal error: Call to protected method pass::fail() from context '' in %s on line %d

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>