Ben bu işe öğrenmek için çalışıyorum
Test amaçlı, ben iki web sitesi yaptık.
Bir diğer bir REST hizmet çağırıyor
Ben file_get_contents ile xml veri çekme
Bunu echo eğer, ben veri kapalı bir dize görebilirsiniz.
Ama nasıl üzerinde simpelxml kullanabilirsiniz düğümler kendileri verileri ayıklamak?
If I use simplexml_load_file($url), I get some error saying xml declaration only allowed at the start off the document?
Benim testfile bu var
<?php
$url='http://www.woonbel.nl/gps/setgpsloc';
//not working
$xml =simplexml_load_file($url);
print_r($xml);
//just a string
$xml=file_get_contents($url);
echo "<h3>$xml</h3><br>";
?>
Bu gönderdiğim xml oldu.
I send this from a class file that I included in the top off my php file if I am sure the webservice is called, maybe that has someting to do with the declaration error?
header('Content-type: text/xml');
echo "<?xml version=\"1.0\"?>\n";
echo "<response>\n";
echo "\t<status>$status_code</status>\n";
echo "\t<fout>Geen</fout>\n";
echo "</response>";
Teşekkürler, Richard