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

(새 문서: ==개요== ;PHP 배치 인수 받기 ==같이 보기== *PHP 배치 분류: PHP)
 
1번째 줄: 1번째 줄:
==개요==
==개요==
;PHP 배치 인수 받기
;PHP 배치 인수 받기
<source lang='dos'>
<?php
if(count($argv)<2) {
$php_file = $argv[0];
echo "$php_file: missing operand\n";
exit(1);
}
</source>
==같이 보기==
*[[PHP 배치]]
[[분류: PHP]]


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

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

1 개요

PHP 배치 인수 받기
<?php
if(count($argv)<2) {
	$php_file = $argv[0];
	echo "$php_file: missing operand\n";
	exit(1);
}

2 같이 보기

3 같이 보기

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