PHP 8.5.0 Alpha 1 available for testing

Voting

: two plus six?
(Example: nine)

The Note You're Voting On

dee jay simple zero07 at geemail dawt co
12 years ago
Using a heredoc with vprintf:

<?php
$string
= <<<THESTRING
I like the state of %1\$s <br />
I picked: %2\$d as a number, <br />
I also picked %2\$d as a number again <br />
%3\$s<br />
THESTRING;

$returnText = vprintf( $string, array('Oregon','7','I Love Oregon') );

echo
$returnText;
?>

<< Back to user notes page

To Top