API15

JRequest/getFloat

From Joomla! Documentation

< API15:JRequest
Revision as of 17:19, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Fetches and returns a given filtered variable. The float filter only allows digits and periods. This is currently only a proxy function for getVar(). <span class="edit...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API15" 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[edit]

Fetches and returns a given filtered variable. The float filter only allows digits and periods. This is currently only a proxy function for getVar().

[Edit Descripton]

Template:Description:JRequest/getFloat

Syntax[edit]

getFloat($name, $default=0.0, $hash= 'default')
Parameter Name Default Value Description
$name $name Variable name
$default 0.0 $default Default value if the variable does not exist
$hash 'default' $hash Where the var should come from (POST, GET, FILES, COOKIE, METHOD)

Returns[edit]

float Requested variable

Defined in[edit]

libraries/joomla/environment/request.php

Importing[edit]

jimport( 'joomla.environment.request' );

Source Body[edit]

function getFloat($name, $default = 0.0, $hash = 'default')
{
        return JRequest::getVar($name, $default, $hash, 'float');
}

[Edit See Also] Template:SeeAlso:JRequest/getFloat

Examples[edit]

<CodeExamplesForm />