|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-03-04 10:15 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 04:00:02 2025 UTC |
Comments # and // BUG. NOT BUG: <?php #---pega o xml----- $data = "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?> <get> <id_game>1026587</id_game> </get>"; /* $data = "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?> <gamestatus> <id_game>1026587</id_game> <jogadores> </jogadores> <mapa> </mapa> </gamestatus>"; */ #------------------ ?> BUGS: <?php #---pega o xml----- $data = "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?> <get> <id_game>1026587</id_game> </get>"; # $data = "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?> # # <gamestatus> # <id_game>1026587</id_game> # <jogadores> # # </jogadores> # <mapa> # # </mapa> # </gamestatus>"; #------------------ ?> OR: <?php #---pega o xml----- $data = "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?> <get> <id_game>1026587</id_game> </get>"; // $data = "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?> // // <gamestatus> // <id_game>1026587</id_game> // <jogadores> // // </jogadores> // <mapa> // // </mapa> // </gamestatus>"; #------------------ ?>