配列ヘルパ
配列ヘルパのファイルの中身は、配列を使って処理をするのに役立つ関数です。
ヘルパのロード
このヘルパは次のコードを使ってロードします:
$this->load->helper('array');
次の関数が利用できます:
element()
配列から要素を取り出すことができます。この関数は、配列に添字がセットされ、それが値を持つかどうかをテストします。値を持っている場合はその値が返されます。もし値がない場合は、FALSEまたは、第3引数で指定した値が返ります。例:
$array = array('color' => 'red', 'shape' => 'round', 'size' => '');
// "red" を返します。
echo element('color', $array);
// NULLを返します。
echo element('size', $array, NULL);
random_element()
配列を入力として要素をランダムに選んで返します。使用例:
$quotes = array(
"I find that the harder I work, the more luck I seem to have. - Thomas Jefferson",
"Don't stay in bed, unless you can make money in bed. - George Burns",
"We didn't lose the game; we just ran out of time. - Vince Lombardi",
"If everything seems under control, you're not going fast enough. - Mario Andretti",
"Reality is merely an illusion, albeit a very persistent one. - Albert Einstein",
"Chance favors the prepared mind - Louis Pasteur"
);
echo random_element($quotes);