RosettaCodeData/Task/String-interpolation--included-/PHP/string-interpolation--included-.php
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

5 lines
103 B
PHP

<?php
$extra = 'little';
echo "Mary had a $extra lamb.\n";
printf("Mary had a %s lamb.\n", $extra);
?>