Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

PHP strings


<?php
echo 'this is a simple string';

echo 'You can also have embedded newlines in
strings this way as it is
okay to do';

// Outputs: Arnold once said: "I'll be back"
echo 'Arnold once said: "I'll be back"';

// Outputs: You deleted C:*.*?
echo 'You deleted C:*.*?';

// Outputs: You deleted C:*.*?
echo 'You deleted C:*.*?';

// Outputs: This will not expand: 
 a newline
echo 'This will not expand: 
 a newline';

// Outputs: Variables do not $expand $either
echo 'Variables do not $expand $either';
?>

Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #PHP #strings
ADD COMMENT
Topic
Name
1+6 =