1/1 페이지 열람 중
PHP에서 현지 시간을 확인하려면 localtime 함수를 사용 localtime 함수 예제 [code] $localtime = localtime(); $localtime_assoc = localtime(time(), true); print_r($localtime); print_r($localtime_assoc); [/code] 결과 [code] Array ( [0] => 24 [1] => 3 [2] => 19 [3] => 3 [4] => 3 [5] =>…
PHP에서 realpath 캐시 크기를 가져오기 위해서 realpath_cache_size 함수를 사용 realpath_cache_size 함수 예제 [code] var_dump(realpath_cache_size()); [/code] 결과 [code] int (412) [/code] realpath_cache_size 함수 설명 PHP 5.3.2 버전부터 제공 realpath 캐시에서 사용하는 메모리 양을 가져옵니다 realpath 캐시가 사용중인 메모리 양을 반환 realpath_cache_size 함수 정의 [co…
PHP에서 두 DateTime 개체를 비교하려면 date_diff 함수를 사용 date_diff 함수 예제 [code] $origin = date_create('2023-09-11'); $target = date_create('2023-09-13'); $interval = date_diff($origin, $target); echo $interval->format('%R%a days'); [/code] 결과 [code] +2 days [/code] date_diff 함수 설명 PHP 5.3.0 버전부터 제공 이 함수는…
PHP에서 배열을 정렬하고 인덱스를 유지하려면 asort 함수를 사용합니다. asort 함수 예제 [code] $fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple"); asort($fruits); foreach ($fruits as $key => $val) { ec…
마스터 배열($array) 배열과 비교할 배열($arrays)을 비교해서 "값"을 기준으로 두 배열간에 교집합을 찾으려면 array_intersect 함수를 사용합니다. array_intersect 함수 예제 [code] $array1 = array("a" => "abc", "aaa", "bbb"); $array2 = array("b" => "abc", "bbb", "…