API16:JText/sprintf
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Passes a string thru an sprintf.
Syntax
static sprintf($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 sprintf($string) { $lang = &JFactory::getLanguage(); $args = func_get_args(); if (count($args) > 0) { $args[0] = $lang->_($args[0]); return call_user_func_array('sprintf', $args); } return ''; }
[Edit See Also] SeeAlso:JText/sprintf
Examples
<CodeExamplesForm />
