tags:

views:

17

answers:

1

anyone know the meaning of %s in joomla ? I found it in .ini file but don't know how they had been fecth or converted.

I found the example of the flowing code in .INI

EMAIL_MSG=This is an e-mail from (%s) sent by %s (%s). You may also find the following link interesting: %s
+1  A: 

It's used for string substitution using sprintf

http://php.net/manual/en/function.sprintf.php

pharalia