PHP & Others

배열 stripslashes

컨텐츠 정보

본문

function stripslashes_deep($value)

{

    $value = is_array($value) ?

                array_map('stripslashes_deep', $value) :

                stripslashes($value);


    return $value;

}


$array = stripslashes_deep($array);


관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
사랑한다는 것은 둘이 마주보는 것이 아니라 함께 같은 방향을 바라보는 것이다. (생떽쥐베리)