php中的exec()函数返回“通讯失败”

时间:2019-06-17 14:55:11

标签: php exec

我有一个问题,当我尝试在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返回“通讯失败”,是否有机会这样做?

0 个答案:

没有答案