Connecting Tech Pros Worldwide Help | Site Map

joining string

  #1  
Old July 17th, 2005, 02:30 PM
socialism001@yahoo.com
Guest
 
Posts: n/a
I'm new to php and have read the implode statement on php.net but I
guess I still don't understand it. Below is what I have:

$value = implode($disp_cap," - ",substr($value,0,300));

$disp_cap = Office Space
$value = 3,000 sq.ft. located at the intersection of...

I need the $value to join the two so I would get
Office Space - 3,000 sq.ft. located at the...

I get the error:
Warning: Wrong parameter count for implode() in
/home/GQ/public_html/bb/test.php on line 92

Thanks,
Chris

  #2  
Old July 17th, 2005, 02:30 PM
Dale
Guest
 
Posts: n/a

re: joining string


$a = "Hello";
$b = "world";
$c = $a." ".$b;

echo $c;

"Hello World"

Is that what you want to do? Use the . "dot" to concat strings.

  #3  
Old July 17th, 2005, 02:30 PM
John T
Guest
 
Posts: n/a

re: joining string


I think maybe you want to do this:

$value = $disp_cap." - ".substr($value,0,300);


<socialism001@yahoo.com> wrote in message
news:1118126102.364080.283710@o13g2000cwo.googlegr oups.com...[color=blue]
> I'm new to php and have read the implode statement on php.net but I
> guess I still don't understand it. Below is what I have:
>
> $value = implode($disp_cap," - ",substr($value,0,300));
>
> $disp_cap = Office Space
> $value = 3,000 sq.ft. located at the intersection of...
>
> I need the $value to join the two so I would get
> Office Space - 3,000 sq.ft. located at the...
>
> I get the error:
> Warning: Wrong parameter count for implode() in
> /home/GQ/public_html/bb/test.php on line 92
>
> Thanks,
> Chris
>[/color]


  #4  
Old July 17th, 2005, 02:30 PM
Alvaro G Vicario
Guest
 
Posts: n/a

re: joining string


*** socialism001@yahoo.com wrote/escribió (6 Jun 2005 23:35:02 -0700):[color=blue]
> $value = implode($disp_cap," - ",substr($value,0,300));[/color]
[color=blue]
> Warning: Wrong parameter count for implode() in
> /home/GQ/public_html/bb/test.php on line 92[/color]

http://www.php.net/implode

As you can see, implode() does _not_ have three arguments.

--
-- Álvaro G. Vicario - Burgos, Spain
-- http://bits.demogracia.com - Mi sitio sobre programación web
-- Don't e-mail me your questions, post them to the group
--
  #5  
Old July 17th, 2005, 02:30 PM
Tony
Guest
 
Posts: n/a

re: joining string


<socialism001@yahoo.com> wrote in message
news:1118126102.364080.283710@o13g2000cwo.googlegr oups.com...[color=blue]
> I'm new to php and have read the implode statement on php.net but I
> guess I still don't understand it. Below is what I have:
>
> $value = implode($disp_cap," - ",substr($value,0,300));
>
> $disp_cap = Office Space
> $value = 3,000 sq.ft. located at the intersection of...
>
> I need the $value to join the two so I would get
> Office Space - 3,000 sq.ft. located at the...[/color]

I think simple concatenation would be better for what you want to achieve:

$finalString = $disp_cap . " - " . $value;



Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
alternating string replace cesco answers 33 January 12th, 2008 03:35 AM
StringBuilder vs. String performance Richard Lewis Haggard answers 12 April 21st, 2006 11:15 PM
string goes away Andreas Beyer answers 8 July 19th, 2005 12:24 AM
String concatenation Jonas Galvez answers 5 July 18th, 2005 01:08 PM