次を使用してPerlスクリプトを実行しようとしています:
$var = null;
system(PATH_PERL . 'script.pl', $var);
var_dump($var);
ただし、次のエラーが発生します。
Warning: system() has been disabled for security reasons [...]
無効な機能の完全なリスト ( 付きini_get('disable_functions')
):
system, system_exec, shell, shell_exec, exec, passthru, escapeshellarg, escapeshellcmd, proc_close, proc_open, ini_alter, popen, show_source, enable _dl, dl
これらの機能が無効になっているときに Perl スクリプトを実行する方法はありますか?