Return to objects_011.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests |
1.1 ! misho 1: --TEST-- ! 2: redefining constructor (__construct first) ! 3: --INI-- ! 4: error_reporting=8191 ! 5: --FILE-- ! 6: <?php ! 7: ! 8: class test { ! 9: function __construct() { ! 10: } ! 11: function test() { ! 12: } ! 13: } ! 14: ! 15: echo "Done\n"; ! 16: ?> ! 17: --EXPECT-- ! 18: Done