|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-01 11:18 UTC] johannes@php.net
[2005-11-01 13:37 UTC] ihanic at yahoo dot com
[2005-11-09 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 24 08:00:02 2025 UTC |
Description: ------------ Server not found. Segmentation fault Reproduce code: --------------- <?php function any_func () { return "any_func"; } $any_var = "any_value"; switch ($any_var) { default: class any_class { function any_class_func() { echo "any_class_func ".any_func().""; } } $any_class = new any_class(); $any_class->any_class_func(); } ?> Expected result: ---------------- any_class_func any_func Actual result: -------------- Server not found. Segmentation fault