php getopt() 와 argv 같이 사용하기
USAGE: test [option]... [FILE]... Options: -a something -b something -c something 위 스타일의 CLI를 php로 구현해 보자. <?php $options = getopt('a:b:c:'); $argx = 0; while (++$argx < $argc && preg_match(…
USAGE: test [option]... [FILE]... Options: -a something -b something -c something 위 스타일의 CLI를 php로 구현해 보자. <?php $options = getopt('a:b:c:'); $argx = 0; while (++$argx < $argc && preg_match(…