blob: 075a31fdf08c890bfd4332c3d1d54e363441331a [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2/**
3 * CodeIgniter
4 *
Greg Aker741de1c2010-11-10 14:52:57 -06005 * An open source application development framework for PHP 5.1.6 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
7 * @package CodeIgniter
8 * @author ExpressionEngine Dev Team
Greg Aker0711dc82011-01-05 10:49:40 -06009 * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
Derek Allard2067d1a2008-11-13 22:59:24 +000010 * @license http://codeigniter.com/user_guide/license.html
11 * @link http://codeigniter.com
12 * @since Version 1.0
13 * @filesource
14 */
15
16// ------------------------------------------------------------------------
17
18/**
19 * CodeIgniter Array Helpers
20 *
21 * @package CodeIgniter
22 * @subpackage Helpers
23 * @category Helpers
24 * @author ExpressionEngine Dev Team
25 * @link http://codeigniter.com/user_guide/helpers/array_helper.html
26 */
27
28// ------------------------------------------------------------------------
29
30/**
31 * Element
32 *
33 * Lets you determine whether an array index is set and whether it has a value.
34 * If the element is empty it returns FALSE (or whatever you specify as the default value.)
35 *
36 * @access public
37 * @param string
38 * @param array
39 * @param mixed
40 * @return mixed depends on what the array contains
Barry Mienydd671972010-10-04 16:33:58 +020041 */
Derek Allard2067d1a2008-11-13 22:59:24 +000042if ( ! function_exists('element'))
43{
44 function element($item, $array, $default = FALSE)
45 {
46 if ( ! isset($array[$item]) OR $array[$item] == "")
47 {
48 return $default;
49 }
50
51 return $array[$item];
Barry Mienydd671972010-10-04 16:33:58 +020052 }
Derek Allard2067d1a2008-11-13 22:59:24 +000053}
54
55// ------------------------------------------------------------------------
56
57/**
58 * Random Element - Takes an array as input and returns a random element
59 *
60 * @access public
61 * @param array
62 * @return mixed depends on what the array contains
Barry Mienydd671972010-10-04 16:33:58 +020063 */
Derek Allard2067d1a2008-11-13 22:59:24 +000064if ( ! function_exists('random_element'))
65{
66 function random_element($array)
67 {
68 if ( ! is_array($array))
69 {
70 return $array;
71 }
Robin Sowelle8867712011-01-30 17:30:54 -050072
Derek Allard2067d1a2008-11-13 22:59:24 +000073 return $array[array_rand($array)];
Barry Mienydd671972010-10-04 16:33:58 +020074 }
Derek Allard2067d1a2008-11-13 22:59:24 +000075}
76
Derek Jones3a082fd2010-10-07 09:38:55 -050077// --------------------------------------------------------------------
78
79/**
80 * Elements
81 *
82 * Returns only the array items specified. Will return a default value if
83 * it is not set.
84 *
85 * @access public
86 * @param array
87 * @param array
88 * @param mixed
89 * @return mixed depends on what the array contains
90 */
91if ( ! function_exists('elements'))
92{
93 function elements($items, $array, $default = FALSE)
94 {
95 $return = array();
96
97 if ( ! is_array($items))
98 {
99 $items = array($items);
100 }
101
102 foreach ($items as $item)
103 {
104 if (isset($array[$item]))
105 {
106 $return[$item] = $array[$item];
107 }
108 else
109 {
110 $return[$item] = $default;
111 }
112 }
113
114 return $return;
115 }
116}
Derek Allard2067d1a2008-11-13 22:59:24 +0000117
118/* End of file array_helper.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000119/* Location: ./system/helpers/array_helper.php */