Connecting Tech Pros Worldwide Forums | Help | Site Map

joining string

socialism001@yahoo.com
Guest
 
Posts: n/a
#1: Jul 17 '05
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


Dale
Guest
 
Posts: n/a
#2: Jul 17 '05

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.

John T
Guest
 
Posts: n/a
#3: Jul 17 '05

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]


Alvaro G Vicario
Guest
 
Posts: n/a
#4: Jul 17 '05

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
--
Tony
Guest
 
Posts: n/a
#5: Jul 17 '05

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