Created
January 25, 2013 13:24
-
-
Save sarim/4634395 to your computer and use it in GitHub Desktop.
Testing PHP_EOL
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
#!/usr/bin/env php -q | |
<?php | |
echo 'hello'.PHP_EOL; | |
foobaar().PHP_EOL; | |
echo 'bye bye'.PHP_EOL; | |
function foobaar(){ | |
echo 'my name is foo'.PHP_EOL; | |
} |
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
#!/usr/bin/env php -q | |
<?php | |
echo 'hello'.PHP_EOL; | |
foobaar(); | |
echo 'bye bye'.PHP_EOL; | |
function foobaar(){ | |
echo 'my name is foo'.PHP_EOL; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment