Source Code:
(back to article)
<?php $name = 'John Doe'; $age = 35; printf('My name is %s and I am %d years old.', $name, $age); ?>
Result:
Report an issue