|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-21 01:22 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 18:00:01 2025 UTC |
I'm writing a little method in a debug class that outputs all of the loaded classes for the system, using get_class_methods(). My class started to segfault with this code: function _output_all_classes() { $this->_output_header('All Classes'); $classes = get_declared_classes(); foreach ($classes as $key) { echo $key; echo "\n"; $class_methods = get_class_methods($key); if ($class_methods != '') { foreach ($class_methods as $key) { echo " "; echo $key; } } echo "\n\n"; $vars = get_class_vars($key); if ($vars != '') { foreach ($vars as $key) { echo " "; echo $key; } } } } So I got a list, and tested each name individually. This code segfaults apache: get_class_methods("Directory"); not a bid deal, as this is a default class, but I think this is probably unexpected behavior :) _alex