wp_kses_array_lc [ WordPress Function ]
wp_kses_array_lc ( $inarray )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Goes through an array and changes the keys to all lower case.
Source
<?php
function wp_kses_array_lc($inarray) {
$outarray = array ();
foreach ( (array) $inarray as $inkey => $inval) {
$outkey = strtolower($inkey);
$outarray[$outkey] = array ();
foreach ( (array) $inval as $inkey2 => $inval2) {
$outkey2 = strtolower($inkey2);
$outarray[$outkey][$outkey2] = $inval2;
} # foreach $inval
} # foreach $inarray
return $outarray;
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Function Reference/wp kses array lc « WordPress Codex
Description. Goes through an array and changes the keys to all lower case. Usage. <?php wp_kses_array_lc( $inarray ) ?> Parameters. $inarray: (array) ...
codex.wordpress.org - Docs for page kses.php - WordPress.org
wp_kses_array_lc (line 1030). Goes through an array and changes the keys to all ... array wp_kses_array_lc (array $inarray). array $inarray: Unfiltered array ...
phpdoc.wordpress.org - 常用函数-wp_kses_array_lc() | WordPress啦!
说明. 该函数遍历某数组并将其中的密码改为小写状态。 用法. <?php wp_kses_array_lc( $inarray ) ?> 参数. $inarray. (数组)(必需)未过滤的数组. 默认 值:None ...
www.wordpress.la - Docs for page kses.php
wp_kses_array_lc (line 979). Goes through an array and changes the keys to all ... array wp_kses_array_lc (array $inarray). array $inarray: Unfiltered array ...
phpdoc.ftwr.co.uk