Double-quoted strings : Quotation « String « PHP
- PHP
- String
- Quotation
Double-quoted strings
<?
print "I've gone to the store.";
print "The sauce cost \$10.25.";
$cost = '$10.25';
print "The sauce cost $cost.";
print "The sauce cost \$\061\060.\x32\x35.";
?>
Related examples in the same category