|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-01-04 07:44 UTC] rasmus@php.net
-Status: Open
+Status: Bogus
[2011-01-04 07:44 UTC] rasmus@php.net
[2011-01-04 23:25 UTC] phil dot allen at internode dot on dot net
[2011-01-20 06:01 UTC] anon at anon dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 12:00:01 2025 UTC |
Description: ------------ When concatenating two strings, brackets are being replaced by hashes (#). Test script: --------------- $data1 = '\'2011-1-1'; $data2 = '\' AS DATE)|CAST('; echo $data1 . $data2; Expected result: ---------------- '2011-1-1' AS DATE)|CAST( Actual result: -------------- '2011-1-1' AS DATE#|CAST#