02-07-2008, 08:58 PM
|
#16 (permalink)
|
|
The Addict
Join Date: Nov 2007
Posts: 264
Thanks: 2
|
%s and %d and so on can be used to specify what the expected input it when using sprintf for example
PHP Code:
$var = sprintf('this is a %d number','too')
It won't work because %d is used to accept numerical values (if not mistaken)
|
|
|
|