API15

Difference between revisions of "JArrayHelper/toInteger"

From Joomla! Documentation

< API15:JArrayHelper
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JArrayHelper/toInteger|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JArrayHelper/toInteger}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 53: Line 53:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JArrayHelper/toInteger|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JArrayHelper/toInteger}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 68: Line 68:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 08:43, 12 May 2013

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 edit link to red link >]

<! 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 edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />