|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesddgljcja (last revision 2020-04-18 03:58 UTC by sample at email dot tst)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-12-21 19:41 UTC] johannes@php.net
-Package: Feature/Change Request
+Package: PHP options/info functions
[2010-12-21 19:41 UTC] johannes@php.net
[2017-08-23 00:37 UTC] kalle@php.net
[2017-08-23 00:39 UTC] kalle@php.net
-Status: Open
+Status: Analyzed
[2020-04-18 03:58 UTC] sample at email dot tst
[2022-04-08 07:49 UTC] ilutov@php.net
-Status: Analyzed
+Status: Closed
-Assigned To:
+Assigned To: ilutov
[2022-04-08 07:49 UTC] ilutov@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Jan 05 14:00:01 2026 UTC |
Description: ------------ To make it easier to find information for items enabled in the PHP build why not link the output of phpinfo() to the specific manual pages? This would be easy to achieve, as follows: In /ext/standard/info.c change line 70 from: php_printf("<h2><a name=\"module_%s\">%s</a></h2>\n", module->name, module->name); To: php_printf("<h2><a href=\"http://www.php.net/%s\" title=\"%s\">%s</a></h2>\n", module->name, module->name, module->name); Thank you Sean :)