|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-04-13 22:58 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 13:00:01 2025 UTC |
Description: ------------ The bellow script will cause php to stop processing without showing any warning / error message. The "ok" will not be shown. There should be an error message if you try to initialize a class variable twice. Reproduce code: --------------- <? class Test { public $test = 'a'; public $test = 'b'; } print "ok"; ?> Expected result: ---------------- Error message or warning. Actual result: -------------- No output. PHP just stops processing.