I have this result when i do var_dump to $xml
i need select with simplexml which seq have value 290
i do that
i do var_dump($seq) i have that
no anything array(size=0) empty
Thanks in advance
Code:
`object(SimpleXMLElement)[257]
public '@attributes' =>
array (size=1)
'seq' => string '290' (length=3)
public 'FIN' =>
object(SimpleXMLElement)[256]
public '@attributes' =>
array (size=1)
'seq' => string '261' (length=3)
public 'VAL' => string '1' (length=1)
public 'ATT' =>
array (size=11)
0 =>
object(SimpleXMLElement)[255]`
i do that
Code:
$seq=$xmlglobtech->xpath("//GROUP[@seq='290']/FIN/REM")
no anything array(size=0) empty
Thanks in advance
Comment