RosettaCodeData/Task/Runtime-evaluation/PHP/runtime-evaluation.php

6 lines
108 B
PHP
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
<?php
$code = 'echo "hello world"';
eval($code);
$code = 'return "hello world"';
print eval($code);