3v4l.org

run code in 300+ PHP versions simultaneously
<?php // 変数:データにつけるラベル // 文字列 "" '' // 数値(整数、小数) // 論理値(true/false) // null(何もない) // 配列 // オブジェクト $message = "Hello World!"; $x = 5; $y = 1.22; $flag = true; $n = null; var_dump($message); var_dump($x); var_dump($y); var_dump($flag); var_dump($n);
Output for git.master, git.master_jit, rfc.property-hooks
string(12) "Hello World!" int(5) float(1.22) bool(true) 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:
96.48 ms | 401 KiB | 8 Q