JText/printf
From Joomla! Documentation
< API16:JText
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description
Passes a string thru an printf.
Syntax
static printf($string)
Parameter Name | Default Value | Description |
---|---|---|
$string | The format string. |
Defined in
libraries/joomla/methods.php
Importing
jimport( 'joomla.methods' );
Source Body
public static function printf($string)
{
$lang = &JFactory::getLanguage();
$args = func_get_args();
if (count($args) > 0)
{
$args[0] = $lang->_($args[0]);
return call_user_func_array('printf', $args);
}
return '';
}