"PHP 배치 작업"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
==방법==
==방법==
* 아래와 같이 둘다 가능하다. 즉 -f는 생략해도 된다.
<source lang='bash'>
<source lang='bash'>
php -f 파일명.php
php -f 파일명.php


# -f는 생략가능
php 파일명.php
php 파일명.php
</source>
</source>

2012년 2월 2일 (목) 13:01 판

1 방법

  • 아래와 같이 둘다 가능하다. 즉 -f는 생략해도 된다.
php -f 파일명.php

php 파일명.php

2 테스트

2.1 파일 쓰기

test1.php를 편집기로 열고,

vi test1.php

아래 내용을 넣은 후

<?php
file_put_contents("test1.txt", "John Smith\n");
?>

실행시켜 보자.

실행 예시
[root@jmnote ~]# php test1.php
[root@jmnote ~]# cat test1.txt
John Smith

2.2 인수 받기

test2.php를 편집기로 열고,

vi test2.php

아래 내용을 넣은 후

<?php
print_r($argv);
?>

실행시켜 보자.

실행 예시
[root@jmnote ~]# php test2.php hello world 2012
Array
(
    [0] => test2.php
    [1] => hello
    [2] => world
    [3] => 2012
)

3 도움말

[root@jmnote ~]# php --help
Usage: php [options] [-f] <file> [--] [args...]
       php [options] -r <code> [--] [args...]
       php [options] [-B <begin_code>] -R <code> [-E <end_code>] [--] [args...]
       php [options] [-B <begin_code>] -F <file> [-E <end_code>] [--] [args...]
       php [options] -- [args...]
       php [options] -a

  -a               Run as interactive shell
  -c <path>|<file> Look for php.ini file in this directory
  -n               No php.ini file will be used
  -d foo[=bar]     Define INI entry foo with value 'bar'
  -e               Generate extended information for debugger/profiler
  -f <file>        Parse and execute <file>.
  -h               This help
  -i               PHP information
  -l               Syntax check only (lint)
  -m               Show compiled in modules
  -r <code>        Run PHP <code> without using script tags <?..?>
  -B <begin_code>  Run PHP <begin_code> before processing input lines
  -R <code>        Run PHP <code> for every input line
  -F <file>        Parse and execute <file> for every input line
  -E <end_code>    Run PHP <end_code> after processing all input lines
  -H               Hide any passed arguments from external tools.
  -s               Output HTML syntax highlighted source.

4 같이 보기

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