Re: [PHP-LANG] How to append string
[email protected] (Rasmus Lerdorf) Wed, 25 Feb 2004 10:48:19 -0800 (PST)
| Newsgroups | php.lang |
|---|---|
| Message-ID | <[email protected]> |
. not + As in $array[3] = $array[3] . "more string"; Or simply: $array[3] .= "more string"; -Rasmus On Wed, 25 Feb 2004, Five wrote: > I've been looking through srting functions for an hour and now know how to do everything besides what I need to do. > > I have an arrray of strings. I want to append another string to a string in one element of the array. I'd just do it this way (or > something like it) but I can't get it to work: > > array[3] = array[3] + "more string"; > > It doesn't seem to work like C, java or javascript languages. > > Thanks, > Dale > > -- > PHP Language Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php >