Jump to content

simplexml


sublevel4

Recommended Posts

I have the following code

$response = $bc->getProjects();
    // iterate the projects
    foreach($response['body']->project as $project){
      print_r($project[$n]->name);
  print_r($project[$n]->company->name);
  echo '<br>__________________________________<br>';
  $n++;
}

 

That gives me this output

SimpleXMLElement Object
(
    [0] => Dancing 
)
SimpleXMLElement Object
(
    [0] => Marketing
)
<br>__________________________________<br>

 

How do i get rid of the SimpleXMLElement Object in the output?

 

Link to comment
https://forums.phpfreaks.com/topic/265859-simplexml/
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.