디자인패턴PHP¶
이 문서는 일반적으로 디자인패턴(Design Pattern)이라고 알려진 내용을 다루며, PHP에서 어떻게 구현해야하는지 샘플 코드를 담고 있습니다. 모든 패턴은 조금이나마 예제를 다루고 있습니다. (그리고 그 예제의 대부분은 사용하기에 친근한 Zend Framework, Symfony2, Doctrine2에서 가져왔습니다.)
디자인 패턴에서의 문제는 종종 사람들은 그것들을 알지만 정작 언제 적용해야하는지 모른다는 것입니다.
디자인패턴¶
이 문서에서는 디자인패턴을 크게 3가지의 다른 카테고리로 분류하였습니다. 위키피디아(Wikipedia)에 설명되어있는 디자인 패턴은 **모든 페이지의 제목**을 클릭하시면 읽을 수 있습니다.
- 1. 생성 패턴 (Creational)
- 1.1. 추상 팩토리 <https://ko.wikipedia.org/wiki/%EC%B6%94%EC%83%81_%ED%8C%A9%ED%86%A0%EB%A6%AC_%ED%8C%A8%ED%84%B4)>`_ (Abstract Factory)
- 1.2. 빌더 (Builder)
- 1.3. 팩토리 메서드 (Factory Method)
- 1.4. 멀티턴 (Multiton)
- 1.5. 풀 (Pool)
- 1.6. 프로토타입 (Prototype)
- 1.7. 단순팩토리 (Simple Factory)
- 1.8. 싱글턴 (Singleton)
- 1.9. 정적 팩토리 (Static Factory)
- 2. Structural
- 3. Behavioral
- 4. More
참여하기¶
Please feel free to fork and extend existing or add your own examples
and send a pull request with your changes! To establish a consistent
code quality, please check your code using
PHP CodeSniffer against PSR2 standard
using ./vendor/bin/phpcs -p --standard=PSR2 --ignore=vendor .
.
라이센스¶
(The MIT License)
Copyright (c) 2014 Dominik Liebler and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.