|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2021-07-16 21:07 UTC] popov654 at yandex dot ru
[2021-07-16 21:13 UTC] requinix@php.net
-Package: Doc Build problem
+Package: *General Issues
[2021-07-16 21:13 UTC] requinix@php.net
[2021-07-16 21:13 UTC] requinix@php.net
-Status: Open
+Status: Feedback
[2021-07-17 12:51 UTC] popov654 at yandex dot ru
-Status: Feedback
+Status: Open
[2021-07-17 12:51 UTC] popov654 at yandex dot ru
[2021-07-18 11:25 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Package: *General Issues
+Package: Reflection related
-Assigned To:
+Assigned To: cmb
[2021-07-18 11:25 UTC] cmb@php.net
[2021-07-18 23:45 UTC] popov654 at yandex dot ru
-Status: Feedback
+Status: Assigned
[2021-07-18 23:45 UTC] popov654 at yandex dot ru
[2021-07-19 00:21 UTC] popov654 at yandex dot ru
[2021-07-19 08:03 UTC] nikic@php.net
[2021-07-19 09:25 UTC] cmb@php.net
-Status: Assigned
+Status: Feedback
[2021-07-19 09:25 UTC] cmb@php.net
[2021-08-01 04:22 UTC] php-bugs at lists dot php dot net
[2021-08-03 03:39 UTC] popov654 at yandex dot ru
-Status: No Feedback
+Status: Closed
[2021-08-03 03:39 UTC] popov654 at yandex dot ru
[2021-08-03 03:40 UTC] popov654 at yandex dot ru
-Status: Closed
+Status: Assigned
[2021-08-03 03:40 UTC] popov654 at yandex dot ru
[2021-08-03 03:44 UTC] popov654 at yandex dot ru
[2021-08-03 10:30 UTC] cmb@php.net
-Status: Assigned
+Status: Open
-Assigned To: cmb
+Assigned To:
[2021-08-03 10:30 UTC] cmb@php.net
[2021-08-04 07:45 UTC] popov654 at yandex dot ru
[2021-08-04 09:45 UTC] cmb@php.net
[2024-03-29 06:20 UTC] derrickharrisonp59459 at gmail dot com
[2024-05-03 09:34 UTC] robert1997blodgett at outlook dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 03:00:01 2025 UTC |
Description: ------------ If PHP is configured as an Apache module, the returned value is an empty string. However, if you remove the space in the second line ("Thetest"), the output is correct. If you replace the space with an underscore ("_"), it still fails. If PHP is run through the command line, the output is correct. Also on Ubuntu 20.10 with latest Apache and PHP 8.0.8 the result is correct. So I guess it is somehow related with the Apache module for Windows. Test script: --------------- <?php /** * The test * * @param foo bar * @return baz */ class TestClass { } $class = new ReflectionClass('TestClass'); print_r($class); echo $class->getDocComment(); ?> Expected result: ---------------- /** * The test * * @param foo bar * @return baz */