3v4l.org

run code in 300+ PHP versions simultaneously
<?php // 03.data_types.php print gettype(true) . PHP_EOL; // bolean print gettype(12345) . PHP_EOL; // integer print gettype(1.2345) . PHP_EOL; // double print gettype("Hello") . PHP_EOL; // string print gettype([1, 2, 3]) . PHP_EOL; // array print gettype(new stdClass()) . PHP_EOL; // object print gettype(null) . PHP_EOL; // NULL
Output for git.master, git.master_jit, rfc.property-hooks
boolean integer double string array object NULL

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:
25.26 ms | 405 KiB | 5 Q