3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { private function x() { # retrieve caller name $calledby = debug_backtrace(); print_r($calledby); // does not work $caller = (strlen($calledby[1]['class'])) ? $calledby[1]['class'] : $calledby[0]['class']; // works and does does not segfault if (strlen($calledby[1]['class'])) $caller = $calledby[1]['class']; else $caller = $calledby[0]['class']; # arguments are required if (!func_num_args()) { return; } # fill variables with argument contents if exists $variables = (func_num_args() == 0) ? NULL : (is_array(func_get_arg(0)) ? func_get_arg(0) : NULL); } public function __construct() { $this->x(); } } new A();
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [file] => /in/VjYk1 [line] => 20 [function] => x [class] => A [object] => A Object ( ) [type] => -> [args] => Array ( ) ) [1] => Array ( [file] => /in/VjYk1 [line] => 24 [function] => __construct [class] => A [object] => A Object ( ) [type] => -> [args] => Array ( ) ) )

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:
35.59 ms | 403 KiB | 8 Q