Created
November 11, 2011 12:28
-
-
Save takimo/1357887 to your computer and use it in GitHub Desktop.
sample.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // EOFはぐぐってみて | |
| $return_xml = <<<EOF | |
| <people> | |
| <person name="Person 1"> | |
| <child/> | |
| <child/> | |
| <child/> | |
| </person> | |
| <person name="Person 2"> | |
| <child/> | |
| <child/> | |
| <child/> | |
| <child/> | |
| <child/> | |
| </person> | |
| </people> | |
| EOF; | |
| print "a=".urlencode($return_xml); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment