Simple types / Strings

<?php

$multilineString = "
    1. First line
    2. Second line
        3. Third line
    4. Fourth \"line\"
";

echo $multilineString;
# prints:
#
#    1. First line
#    2. Second line
#        3. Third line
#    4. Fourth "line"