Jump to content

Array Problem Again


selenin

Recommended Posts

Hello, arrays are killing me, my code:

 

$keywords = $movie->keywords();
	foreach ($keywords as $tag)
                      {
					var_dump($tag);

				  }

 

then I get this

 

string(6) "Rabbit" string(5) "Queen" string(4) "Card" string(7) "Reality" string(17) "Parallel Universe"

 

but I would need the result out of the loop, but there I have only Parallel Universe, when I make this:

 

	    $keywords = $movie->keywords();
	var_dump($keywords);

 

I get this:

 

array(5) {

  [0]=>

  string(6) "Rabbit"

  [1]=>

  string(5) "Queen"

  [2]=>

  string(4) "Card"

  [3]=>

  string(7) "Reality"

  [4]=>

  string(17) "Parallel Universe"

}

 

What I could need is the second one but only with one key, then I could make a foreach in the template, is this possible like

 

array(5) {

  [0]=>

  string(6) "Rabbit"

  =>

  string(5) "Queen"

  =>

  string(4) "Card"

  =>

  string(7) "Reality"

  =>

  string(17) "Parallel Universe"

}

 

Maybe I'm completely on the wrong way

Link to comment
https://forums.phpfreaks.com/topic/204328-array-problem-again/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.