|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-04-13 09:38 UTC] pajoye@php.net
-Status: Open
+Status: Feedback
[2012-04-13 09:38 UTC] pajoye@php.net
[2012-04-13 16:24 UTC] Jared dot Williams1 at ntlworld dot com
-Status: Feedback
+Status: Closed
[2012-04-13 16:24 UTC] Jared dot Williams1 at ntlworld dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 11:00:01 2025 UTC |
Description: ------------ Opening a page containing the code below causes a 502 when APC is enabled. Reproduce code: --------------- <?php namespace Bug { interface MyInterface { function text($text); } trait MyText { function text($text) { return htmlspecialchars($text, ENT_QUOTES, 'UTF-8'); } } class MyImplementation implements MyInterface { use MyText; } } Expected result: ---------------- No errors Actual result: -------------- 502