3v4l.org

run code in 300+ PHP versions simultaneously
<?php // 車クラスを作成 class Car { private $km = 0; public function drive($distance) { $this->km += $distance; } public function getKm() { return $this->km; } } // インスタンス化して変数priusに代入 $prius = new Car(); // インスタンスのdriveメソッドへアクセスして引数に80を指定 $prius->drive(80); // 同じくインスタンスのdriveメソッドへアクセスして引数に20を指定 $prius->drive(20); // インスタンスのgetKmメソッドへアクセスして走行距離を出力 print $prius->getKm(); // インスタンス化して変数corollaに代入 $corolla = new Car(); //インスタンスのdriveメソッドへアクセスして引数に50を指定 $corolla->drive(50); // インスタンスのgetKmメソッドへアクセスして走行距離を出力 print $corolla->getKm();
Output for git.master, git.master_jit, rfc.property-hooks
10050

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
36.08 ms | 401 KiB | 8 Q