我有一个问题,当我尝试在php中使用exec函数时,它返回“通讯失败”,我正在尝试使postgres数据库备份抛出php:
$script = "PGPASSWORD=$dbpass pg_dump --host $dbhost --port $dbport --username=$dbuser --format custom --blobs --encoding UTF8 --verbose --file $mfile $dbname";
exec($script, $output, $return);
但是该脚本似乎花费了大量时间,并且php返回“通讯失败”,是否有机会这样做?