I have this in xml
am having this error
Fatal error:call to undefined method stdClass::xpath () on line 190
How can i resolve this issue thanks in advance
Code:
<JobReference> <Type>STANDARD</Type> <Title>N° ANCIEN DOSSIER</Title> <Reference/>
Fatal error:call to undefined method stdClass::xpath () on line 190
Code:
$xmljobreference = simplexml_load_string ($GetJobResult->JobReferences->JobReference->Title ); $referenceanciendossier = $GetJobResult->JobReferences->xpath( "//JobReference[@Title ='N° ANCIEN DOSSIER']/Reference" ); var_dump($referenceanciendossier);
Comment