PHP 배치 전달인자 받기

(PHP 배치 인수 받기에서 넘어옴)

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 }}