3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = array(1,2); $test = 'found {{$the}}'; $the = 'var'; preg_match('/({{\$(.*)}})/',$test,$matches); var_dump($matches[2]); var_dump(${$matches[2]}); $new = preg_replace('/({{\$(.*)}})/',${$matches[2]},$test); echo $new;

preferences:
50.74 ms | 402 KiB | 5 Q