SMALL ☞ 조건문이란?조건문이란 말 그대로 조건이 있는 문장이란 뜻이다. 간단한 예로 우리가 커피를 마실때 여러종류의 커피중 한가지를...
PHP 일반 dreamload Else else if If if else PHP 삼항 연산자 조건 연산자 조건문
꿈꾸는 개발자 on 15-06-02
https://github.com/chrisboulton/php-resque https://github.com/chrisboulton/php-resque-scheduler php-resque는 resque의 php port으로, priority job, delayed job 등을 구현하고 싶을 때 사용한다. composer...
PHP
ejnahc's thinkbucket on 15-06-02
SMALL ☞ CI의 URL 방식과 기본적인 URL 방식 많은 사람들이 웹개발도구로 공개된 프레임워크를 사용한다. 물론 프레임워크 없이 코딩을 하...
코드이그나이터 CI CodeIgniter Controller dreamload Model PHP View 모델 뷰 컨트롤러
꿈꾸는 개발자 on 15-05-26
프로그램이 인자(Argument)를 받아들이기 위해서는 addArgument() 메소드를 이용해 인자에 대한 정보를 매개변수로 전달해야 합니다. $parser->addArgument( 'INPUT', [ 'multiple' => true,...
비분류 argument commandline console PEAR PHP subcommand
Sangheon's Archive on 15-05-10
프로그램이 인자(Argument)를 받아들이기 위해서는 addArgument() 메소드를 이용해 인자에 대한 정보를 매개변수로 전달해야 합니다. $parser->addArgument( 'INPUT', [ 'multiple' => true, 'optional' => true, ]...
Console_CommandLine 패키지는 유용한 옵션들을 제공합니다. 이런 옵션들을 적절히 사용하면 깔끔하면서도 강력한 명령행 인자를 사용자에게 제공 할 수 있습니다. Choices $parser->addOption( 'color', [...
비분류 commandline console PEAR PHP
Sangheon's Archive on 15-05-06
Console_CommandLine 패키지는 유용한 옵션들을 제공합니다. 이런 옵션들을 적절히 사용하면 깔끔하면서도 강력한 명령행 인자를 사용자에게 제공 할 수 있습니다. Choices $parser->addOption( 'color', [ 'short_n...
명령행 인자들에 대한 설정을 PHP 코드가 아닌 XML 파일을 이용해 할 수도 있습니다. [crayon-5ca8a2d6f09ab057792509/] fromXmlFile 메소드는 지정한 XML 파일을 읽어들이고 Console_CommandLine 인스턴스를 반환합...
Sangheon's Archive on 15-05-05