전체 글 썸네일형 리스트형 input maxlength안될때 feat.자동포커스 HTML 삽입 미리보기할 수 없는 소스 - - 더보기 jquery input내용 한번에 빈값 확인 이름: 직업: 연봉: 부서: 더보기 배열에 재귀로 함수 실행하기 public static function recursionFuntion($data, $arrDepth = 1) { return array_map(function ($item) use ($arrDepth) { if (is_array($item) === true) { //하위배열 유무 체크 $arrDepth++; $item = self::recursionFuntion($item, $arrDepth); } elseif (gettype($item) === 'string' || gettype($item) === 'integer') { //문자나 숫자면 실행 $item = htmlspecialchars_decode($item); } return $item; }, $data); } 더보기 이전 1 다음