在PHP中,exec()
函数允许你执行外部命令
exec('/usr/bin/python3 /path/to/your/script.py');
exec()
函数,而不是将它们连接在一起。这将使参数更容易被外部命令解析。exec('/usr/bin/python3 /path/to/your/script.py arg1 arg2 arg3');
exec()
函数。exec('/usr/bin/python3 /path/to/your/script.py', $args);
2>&1
将错误输出重定向到标准输出,这样你可以捕获并处理错误消息。exec('/usr/bin/python3 /path/to/your/script.py 2>&1', $output, $return_var);
if ($return_var !== 0) {
echo "Error: " . implode("\n", $output);
} else {
echo "Success: " . implode("\n", $output);
}
shell_exec()
:如果你需要获取命令的完整输出,可以使用shell_exec()
函数。$output = shell_exec('/usr/bin/python3 /path/to/your/script.py 2>&1');
echo "Success: " . $output;
passthru()
:如果你想要直接将命令的输出传递给浏览器,而不经过PHP处理,可以使用passthru()
函数。passthru('/usr/bin/python3 /path/to/your/script.py 2>&1');
通过遵循这些建议,你可以确保在使用exec()
函数处理外部命令时实现标准化。