Skip to content

Instantly share code, notes, and snippets.

@sarim
Created January 25, 2013 13:24
Show Gist options
  • Save sarim/4634395 to your computer and use it in GitHub Desktop.
Save sarim/4634395 to your computer and use it in GitHub Desktop.
Testing PHP_EOL
#!/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;
}
#!/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