Guest User

Untitled

a guest
Jul 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. // Файл test.xml содержит XML документ с корневым элементом
  3. // и вложенным элементом title /[root]/title.
  4. if (file_exists('bad_pers.xml')) {
  5. $xml = simplexml_load_file('bad_pers.xml');
  6. $attributes = $xml->title[0]->attributes();
  7. echo $attributes['nik'];
  8. echo $attributes['uidd'];
  9. //var_dump($dom);
  10. } else {
  11. exit('Ошибка открытия test.xml.');
  12. }
  13. ?>
Add Comment
Please, Sign In to add comment