API15:JText/printf
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 printf
Syntax
printf($string)
| Parameter Name | Default Value | Description |
|---|---|---|
| $string | The format string |
Defined in
libraries/joomla/methods.php
Importing
jimport( 'joomla.methods' );
Source Body
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 ''; }
[Edit See Also] SeeAlso:JText/printf
Examples
<CodeExamplesForm />
