Skip to content

Instantly share code, notes, and snippets.

@volkanozcan
Last active August 29, 2015 14:17
Show Gist options
  • Save volkanozcan/31826ac4e185d1fe1129 to your computer and use it in GitHub Desktop.
Save volkanozcan/31826ac4e185d1fe1129 to your computer and use it in GitHub Desktop.
php:xml
<?php
$context = stream_context_create(array('http' => array('header' => 'Accept: application/xml')));
$url = 'xml adresi';
$xml = file_get_contents($url, true, $context);
$xml = simplexml_load_string($xml);
$xml->getName(); //bu son nod da kullanılıyor.böyle kullanırsan hata verir.
$xml->children; //bu bi alt nodu buluyor.
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment