3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Products{ // Properties protected $_title; protected $_category; public static $error = "Fout opgetreden"; protected static $_changes_saved = "Wijzigingen opgeslagen"; // Methods public function __construct($title, $category){ $this->_title = $title; $this->_category = $category; } public function someFunction(){ self::$_changes_saved; } public static function convertMeterToCentimeter($meter){ return $meter * 100; } public function Length(){ $length = self::convertMeterToCentimeter(3); } public function getCategory(){ return $this->_category; } public function getTitle(){ return $this->_title; } } echo Products::$error; // displays Fout opgetreden echo Products::convertMeterToCentimeter(2); //displays 200
Output for git.master, git.master_jit, rfc.property-hooks
Fout opgetreden200

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:
42.38 ms | 401 KiB | 8 Q