API15

JArrayHelper/toInteger

From Joomla! Documentation

< API15:JArrayHelper
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]

Function to convert array to integer values


<! removed transcluded page call, red link never existed >

Syntax[edit]

toInteger(&$array, $default=null)
Parameter Name Default Value Description
&$array $array The source array to convert
$default null array) to assign if $array is not an array

Defined in[edit]

libraries/joomla/utilities/arrayhelper.php

Importing[edit]

jimport( 'joomla.utilities.arrayhelper' );

Source Body[edit]

function toInteger(&$array, $default = null)
{
        if (is_array($array)) {
                foreach ($array as $i => $v) {
                        $array[$i] = (int) $v;
                }
        } else {
                if ($default === null) {
                        $array = array();
                } elseif (is_array($default)) {
                        JArrayHelper::toInteger($default, null);
                        $array = $default;
                } else {
                        $array = array( (int) $default );
                }
        }
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]