This is a discussion on RE: [PHP] overriding string concatenation '.' within the PHP General forums, part of the PHP Programming Forums category; [snip] > No they are not. Show some examples. What am I missing here? How is the dot operator not ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
[snip]
> No they are not. Show some examples. What am I missing here? How is the dot operator not considered concatenation? $concatenatedString = 'a'.'concatenated'.'string'; [/snip] $ipaddr = "192.34.123.122"; .. is not a concatenator, it is part of the string. $myFileName = "barkLikeAdog.txt"; .. is not a concatenator, it is part of the string. |