element()
사용 예 결과
$sample_array
Array
(
    [color] => red
    [shape] => round
    [radius] => 10
    [diameter] => 20
    [size] => 
)
echo element('color', $sample_array); red
echo element('size', $sample_array, 'No size'); No size

elements()
사용 예 결과
$sample_array
Array
(
    [color] => red
    [shape] => round
    [radius] => 10
    [diameter] => 20
    [size] => 
)
elements(array('color', 'width'), $sample_array);
Array
(
    [color] => red
    [width] => 
)

random_element()
사용 예 결과
$quotes
Array
(
    [0] => 편법이라고 쓰고 '야매'라고 읽는다.... - 이*민
    [1] => 2011년 귀속 근로소득 연말정산. - 강*일
    [2] => 출마할 때도 공탁금 2억원만 들고 선관위로 찾아가면 돼요. - 개콘
    [3] => If everything seems under control, you're not going fast enough. - Mario Andretti
    [4] => Reality is merely an illusion, albeit a very persistent one. - Albert Einstein
    [5] => Chance favors the prepared mind - Louis Pasteur
)
echo random_element($quotes); If everything seems under control, you're not going fast enough. - Mario Andretti

// End of Sample

© Copyright by hoksi(Page rendered in 0.0080 seconds)