3v4l.org

run code in 300+ PHP versions simultaneously
<?php$a = new StdClass();$b = $a;var_dump(is_ref($a, $b));function is_ref(&$a, &$b){ // create a unique different value $differentValue = ($a === true) ? false : true; // We need a copy of $a, to keep safe. Note that if $a is a "referenced" value, $copy will be too. $copy = $a; // Change $a and check if $b changed too, finally restore $a using $copy. $a = $differentValue; $same = $a === $b; $a = $copy; return $same;}<?php$a = new StdClass();$b = $a;var_dump(is_ref($a, $b));function is_ref(&$a, &$b){ // create a unique different value $differentValue = ($a === true) ? false : true; // We need a copy of $a, to keep safe. Note that if $a is a "referenced" value, $copy will be too. $copy = $a; // Change $a and check if $b changed too, finally restore $a using $copy. $a = $differentValue; $same = $a === $b; $a = $copy; return $same;}<?php

This is an error 404

There are `0` results


preferences:
140.57 ms | 1403 KiB | 7 Q