1--TEST-- 2redefining constructor (__construct second) 3--INI-- 4error_reporting=8191 5--FILE-- 6<?php 7 8class test { 9 function test() { 10 } 11 function __construct() { 12 } 13} 14 15echo "Done\n"; 16?> 17--EXPECTF-- 18Strict Standards: Redefining already defined constructor for class test in %s on line %d 19Done 20