|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-12-28 21:35 UTC] jani@php.net
-Status: Open
+Status: Bogus
-Package: Feature/Change Request
+Package: *General Issues
[2010-12-28 21:35 UTC] jani@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 11:00:01 2025 UTC |
Description: ------------ Consider following example: class Example { const LONG_SENTENCE = "This sentence is really very very very very very very very very very very very very very very very very very very very very very very very very long"; }; It is not possible to breakup the assigned string using dot operator, and php also doesn't support neither c-like constant string concatenation ("really " "very" -> "really very") or c-like line continuation (end the line with backslash). This is really annoying, cause I end with the code containing extra long lines and I can't split them, making code unreadable without scrolling.