Because I always forget...
Perl heredoc syntax:
$var = <<EOF;
text goes here
EOF
PHP heredoc syntax:
<?php
$str = <<<EOF
text goes here
EOF;
?>
$str = <<<EOF
text goes here
EOF;
?>
Ruby heredoc syntax:
str = <<EOF
text goes here
EOF
Python:
str = """text goes here
str = """text goes here
"""
(text is on the same line as the """ for parity with the other examples)
No comments:
Post a Comment