11-23-2007, 09:23 PM
|
#6 (permalink)
|
|
The Frequenter
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
|
Ooh hell no. I've tested in the program I call sandbox (part of my CMS for testing wild idea's of mine) and I must say, wow.
Tripping down the code here (nubstyle).
PHP Code:
# First we define the replacements right? Ok here we go. $firstReplacement = 'dang'; $secondReplacement = 'it';
# Same way, the lazy way. printf('Oh man, today I saw this chick and may I say %1$s %2$s!', $firstReplacement, $secondReplacement);
Which displayed:
Quote:
|
Oh man, today I saw this chick and may I say dang it!
|
Only tell me one thing, how could I make this practical?
|
|
|