LoginSignup
0

More than 3 years have passed since last update.

October CMS プラグイン実装テク:Linuxコマンドを実行する

Last updated at Posted at 2017-10-19

OctoberCMSはLaravelやSynfonyがベースなので、Processクラスを使用して下記のようにLinuxコマンドを簡単に実行できます。

Processコンストラクタにはコマンド名と引数を配列に入れて渡します。

use Symfony\Component\Process\Process;
use Symfony\Component\Process\Exception\ProcessFailedException;
...

$cmd = ["ls", "-l"];
$process = new Process($cmd);
$process->run();
if (!$process->isSuccessful()) {
    throw new ProcessFailedException($process);
}
log::debug(trim($process->getOutput()));

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0