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

17번째 줄: 17번째 줄:
root@zetawiki:~# php greet.php  
root@zetawiki:~# php greet.php  
Error in greet.php: missing argument.
Error in greet.php: missing argument.
</source>
<source lang='cli'>
root@zetawiki:~# php greet.php John
root@zetawiki:~# php greet.php John
Hello, John.
Hello, John.
</source>
<source lang='cli'>
root@zetawiki:~# php greet.php John Smith
root@zetawiki:~# php greet.php John Smith
Hello, John.
Hello, John.
</source>
<source lang='cli'>
root@zetawiki:~# php greet.php 'John Smith'
root@zetawiki:~# php greet.php 'John Smith'
Hello, John Smith.
Hello, John Smith.

2015년 12월 23일 (수) 16:06 판

1 개요

PHP 스크립트 전달인자 받기
PHP 배치 인수 받기
PHP 인자 전달
root@zetawiki:~# cat greet.php 
<?php
if(count($argv)<2) {
	$php_file = $argv[0];
	echo "Error in $php_file: missing argument.\n";
	exit(1);
}
echo "Hello, ".$argv[1].".\n";
root@zetawiki:~# php greet.php 
Error in greet.php: missing argument.
root@zetawiki:~# php greet.php John
Hello, John.
root@zetawiki:~# php greet.php John Smith
Hello, John.
root@zetawiki:~# php greet.php 'John Smith'
Hello, John Smith.

2 같이 보기

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