Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$text = shell_exec('php -r \'echo 123\''); echo $text;
echo 123
$hello = 'echo 123'
$hello = 'echo 123'; $text = shell_exec("php -r \"$hello\""); echo $text;
$hello = 'echo 123'; $text = shell_exec("php -r '{$hello}'"); echo $text;
$text = shell_exec('php -r '. $hello);