보통 php에서 array_map 잘 활용하지 않는것 같다. 아주 좋은 함수 인것은 맞는것 같으니 잘 활용하자. // 배열값 가공하기 #1 $trace = array_map(function ($item) { return ( $item * $item * $item ); }, array(1, 2, 3, 4, 5 ) ); // 배열값 가공하고 반환하기 #2 $myArray = array_map(function($item) { return $item * 2; }, range( 1, 5 ) ); // 3개의 배열을 하나의 배열로 만들기 $a = array(1, 2, 3, 4, 5 ); $b = array('one', 'two', 'three', 'four', 'five' ); $c = array('uno', 'd..
MongoCollection :: aggregate - aggregation 프레임 워크를 사용하여 집계MongoCollection :: aggregateCursor - 커서를 통해 결과를 집계 파이프 라인 명령을 실행하고 검색MongoCollection :: batchInsert - 여러 문서를 컬렉션에 추가MongoCollection :: __ construct - 새로운 컬렉션을 만들MongoCollection :: count - 모음의 문서 수를 센다MongoCollection :: createDBRef - 데이터베이스에 대한 참조를 만들MongoCollection :: createIndex는 - 이미 존재하지 않는 경우 지정된 필드 (들)에 대한 인덱스를 작성합니다.MongoCollection ..
DDD 구현기초 (거의 Final 버전) from beom kyun choi
PHP 버전, PHP7, PHP5,6, PHP 5.5 기존 Value of variable ($var)isset($var)empty($var)is_null($var)“” (an empty string)bool(true)bool(true)” ” (space)bool(true)FALSEbool(true)bool(true)TRUEbool(true)array() (an empty array)bool(true)bool(true)NULLbool(true)bool(true)“0” (0 as a string)bool(true)bool(true)0 (0 as an integer)bool(true)bool(true)0.0 (0 as a float)bool(true)bool(true)var $var; (a variable ..