8

foo.phar <params>の代わりに直接実行可能ファイルとしてpharスクリプトを開始したいと思いphp foo.phar <params>ます。

4

1 に答える 1

17

デフォルトのスタブを変更する(phpに対応するシェバンを追加する)ことで簡単にできます。

// start buffering. Mandatory to modify stub.
$phar->startBuffering();

// Get the default stub. You can create your own if you have specific needs
$defaultStub = $phar->createDefaultStub('index.php');

// Adding files
$phar->buildFromDirectory(__DIR__, '/\.php$/');

// Create a custom stub to add the shebang
$stub = "#!/usr/bin/php \n".$defaultStub;

// Add the stub
$phar->setStub($stub);

$phar->stopBuffering();
于 2012-06-18T11:57:44.127 に答える