Custom 썸네일형 리스트형 React Hooks React v16.8에 React Hooks라는 기능이 추가가 되었다. 이 기능은 기존 state 기능을 Functional component에서도 가져다 사용할 수 있는 기능이다.기본 사용법은 아래와 같다.import React, { useState } from 'react'; function Example() { // Declare a new state variable, which we'll call "count" const [count, setCount] = useState(0); return ( You clicked {count} times setCount(count + 1)}> Click me );}기존에 이와같은 기능을 구현하려면 class component를 만들어 해당 클래스 내의 stat.. 더보기 [PHP] json_encode_function if (!function_exists('json_encode')) { function json_encode($data) { switch ($type = gettype($data)) { case 'NULL': return 'null'; case 'boolean': return ($data ? 'true' : 'false'); case 'integer': case 'double': case 'float': return $data; case 'string': return '"' . addslashes($data) . '"'; case 'object': $data = get_object_vars($data); case 'array': $output_index_count = 0; $output_indexed = .. 더보기 [PHP] Object sorting Using usort() function. 1 function cmp($a, $b){ 2 return $a['[key_value]'] > $b['[key_value]']; 3 } 4 usort ([objects], 'cmp'); usort ([objects], 'cmp'); 요렇게 사용해줌...이때 cmp함수는 설정해 주어야 하며...string을 비교해줄경우는 strcmp와 같은 함수를 사용해 줄 수 있음. 더보기 이전 1 2 다음