|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-11-24 09:50 UTC] jani@php.net
-Package: Feature/Change Request
+Package: Scripting Engine problem
-Operating System: Any
+Operating System: *
-PHP Version: 5.3.1
+PHP Version: *
[2021-11-23 11:24 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2021-11-23 11:24 UTC] cmb@php.net
[2021-12-05 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 07:00:02 2025 UTC |
Description: ------------ Provide a function for returning all namespaces used in the current request to aid in autoloading. Reproduce code: --------------- <?php use My\Namespace; use Other\Namespace; print_r(get_used_namespaces()); ?> Expected result: ---------------- Array( [0] = My\Namespace, [1] = Other\Namespace ) Actual result: -------------- No such function exists.