Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to echo out the $desc with the words in $sq in bold. This is what my code looks like:

<?php
$desc = "This a sentence witch contains 4 words on is Hello the other is moto the third is hoto and finally but not least nono.";
$sq = "Hello moto hoto nono";
$pieces = explode(" ", $sq);
foreach (array($pieces[0], $pieces[1],$pieces[2],$pieces[3],$pieces[4]) as $item)
    $descr = str_replace($item, "<b>".$item."</b>", $desc);
    echo $descr;
?>

Thanks

share|improve this question
"This a sentence" forgot the is – user666605 Apr 1 '11 at 14:01
sorry about my english – user666605 Apr 1 '11 at 14:14

3 Answers

First of all, you don't have five elements (0 to 4) in your pieces array, but only 4 (=> 0 to 3). Next, you don't need to do this :

foreach (array($pieces[0], $pieces[1],$pieces[2],$pieces[3],$pieces[4]) as $item)

when you can do

foreach ($pieces as $item)

With the first point changed, it should work, but you should change both.

share|improve this answer

Try this:

$desc = "This a sentence witch contains 4 words on is Hello the other is moto the third is hoto and finally but not least nono.";
$sq = "Hello moto hoto nono";
$pieces = explode(" ", $sq);
foreach ($pieces as $item)
  $desc = str_replace($item, "<b>".$item."</b>", $desc);
echo $desc;

There were two errors (I think):

  • First, the loop instruction was incorrect.
  • The echoed var was incorrect to (descr and desc).

Regards

share|improve this answer
thank you this really helped! – user666605 Apr 1 '11 at 14:08

There's no $pieces[4]. 0 => hello; 3 => nono.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.