<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.exec.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'ref.exec.php',
    1 => 'プログラム実行関数',
    2 => 'プログラム実行関数',
  ),
  'up' => 
  array (
    0 => 'book.exec.php',
    1 => 'プログラムの実行',
  ),
  'prev' => 
  array (
    0 => 'exec.resources.php',
    1 => 'リソース型',
  ),
  'next' => 
  array (
    0 => 'function.escapeshellarg.php',
    1 => 'escapeshellarg',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'reference/exec/reference.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/ref.exec.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="ref.exec" class="reference">
  <h1 class="title">プログラム実行関数</h1>

  <div class="partintro">

   <div class="section" id="exec.notes">
    <h2 class="title">注意</h2>
    <div class="warning"><strong class="warning">警告</strong>
     <p class="para">
      ロックしてオープンしたファイル (特に、オープンしたセッション)
      は、プログラムをバックグラウンドで実行する前に閉じておく必要があります。
     </p>
    </div>
   </div>

   <div class="section" id="exec.seealso">
   <h2 class="title">参考</h2>
    <p class="para">
     以下の関数は、
     <a href="language.operators.execution.php" class="link">バッククォート演算子</a>
     にも関係します。
    </p>
   </div>

  </div>



























































































 <h2>目次</h2><ul class="chunklist chunklist_reference"><li><a href="function.escapeshellarg.php">escapeshellarg</a> — シェル引数として使用される文字列をエスケープする</li><li><a href="function.escapeshellcmd.php">escapeshellcmd</a> — シェルのメタ文字をエスケープする</li><li><a href="function.exec.php">exec</a> — 外部プログラムを実行する</li><li><a href="function.passthru.php">passthru</a> — 外部プログラムを実行し、未整形の出力を表示する</li><li><a href="function.proc-close.php">proc_close</a> — proc_open で開かれたプロセスを閉じ、
  そのプロセスの終了コードを返す</li><li><a href="function.proc-get-status.php">proc_get_status</a> — proc_open で開かれたプロセスに関する情報を取得する</li><li><a href="function.proc-nice.php">proc_nice</a> — 現在のプロセスの優先度を変更する</li><li><a href="function.proc-open.php">proc_open</a> — コマンドを実行し、入出力用にファイルポインタを開く</li><li><a href="function.proc-terminate.php">proc_terminate</a> — proc_open でオープンされたプロセスを強制終了する</li><li><a href="function.shell-exec.php">shell_exec</a> — シェルによりコマンドを実行し、文字列として出力全体を返す</li><li><a href="function.system.php">system</a> — 外部プログラムを実行し、出力を表示する</li></ul>
</div>
<?php manual_footer($setup); ?>