userName . " --password " . $this->DatabaseName . "-6ren">
gpt4 book ai didi

php - exec() 这里返回什么?

转载 作者:行者123 更新时间:2023-11-29 07:32:31 25 4
gpt4 key购买 nike

以下是导入数据库的查询字符串:

$query = "mysql --user" . $this->userName . " --password " . $this->DatabaseName . " < " . $completePathOfSQLFile;
$resultQuery = exec($query);

该命令执行良好。但是 exec 是什么?函数返回?我需要确保操作正确执行并返回 true | false相应地。

最佳答案

来自the manual

Return Values

The last line from the result of the command.

但请注意,您还可以将第三个参数传递给 exec,这将是命令的返回状态。非零值通常是错误状态,mysql 客户端可以明智地使用它。该手册还对各种其他方法进行了注释,值得一读。

关于php - exec() 这里返回什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32111332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com