8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【PHP】shebang

Last updated at Posted at 2016-04-05

bashでよく見るファイルの先頭の#!から始まるもの。シバンまたはシェバンと呼ぶらしい。プログラムを実行するインタプリンタを指定する。

PHPのシバンを書けば、phpファイルを実行するときphpコマンドから書かなくても実行できる。

//通常はphp書くけど
php ./hoge.php

//シバンならファイルだけでいける
./hoge.php
```

##PHPのシバンの書き方

### CakePHPのコンソールのシバンを参考に

```
#!/usr/bin/php -q
```

オプションの-qは、HTTP ヘッダの出力を抑制する。

### envを使う方法

phpが/usr/bin配下にあるとは限らない。envをつけるとPATHから探してくれるので柔軟に書けるらしい。

```php
#!/usr/bin/env php
```

ただしenvを使う方法だとphpにオプションをつけることはできない。

```php:実行不可な例
#!/usr/bin/env php -q
```
8
3
1

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
8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?