"PHP 배치 전달인자 받기"의 두 판 사이의 차이

20번째 줄: 20번째 줄:
first argument: 'hello'
first argument: 'hello'
</source>
</source>
==같이 보기==
*[[PHP 배치]]
[[분류: PHP]]


==같이 보기==
==같이 보기==

2014년 5월 12일 (월) 14:44 판

1 개요

PHP 배치 인수 받기

2 소스 코드

<?php
if(count($argv)<2) {
	$php_file = $argv[0];
	echo "$php_file: missing operand\n";
	exit(1);
}
echo "first argument: '".$argv[1]."'\n";

3 실행 예시

[root@jmnote ~]# php test.php
test.php: missing operand
[root@jmnote ~]# php test.php hello
first argument: 'hello'

4 같이 보기

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