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

(새 문서: <source lang='bash'> php -f 파일명.php </source>)
 
2번째 줄: 2번째 줄:
php -f 파일명.php
php -f 파일명.php
</source>
</source>
==설명==
<source lang='bash'>
[root@cdckb ~]# 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.
</source>
[[분류:리눅스]]
[[분류:PHP]]

2012년 2월 2일 (목) 09:03 판

php -f 파일명.php

설명

[root@cdckb ~]# 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.
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}