"PHP $argv"의 두 판 사이의 차이

30번째 줄: 30번째 줄:
* http://php.net/manual/kr/reserved.variables.argv.php
* http://php.net/manual/kr/reserved.variables.argv.php


[[분류: PHP]]
[[분류: PHP 변수]]

2016년 5월 2일 (월) 00:12 판

1 개요

PHP $argv
  • 스크립트로 전달되는 배열
  • 커맨드라인에서 실행 시 인자가 배열로 넘어감
  • PHP 사전정의 변수의 하나

2 예시

  • test.php
<?php
print_r($argv);
root@zetawiki:~# php test.php a b c
Array
(
    [0] => test.php
    [1] => a
    [2] => b
    [3] => c
)

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}