我可以自动从 PHP 找到 MySQL 可执行文件吗?

发布于 2024-09-10 19:00:01 字数 321 浏览 7 评论 0原文

我需要运行 Shell_exec 将转储导入到我的 MYSQL 数据库中。今天我这样做:

$shellExec = 'C:\wamp\bin\mysql\mysql5.1.36\bin\mysql -h localhost -u root mertero_decicare < D:\localhost\sql\decisions.sql';

$out = shell_exec($shellExec .' 2> 输出');

这有效。但是有没有办法从 PHP 中“找到”mysql 可执行文件的位置?所以我不需要硬编码我的 mysql 位置?

罗恩

I need to run Shell_exec to import a dump into my MYSQL database. Today I do this:

$shellExec = 'C:\wamp\bin\mysql\mysql5.1.36\bin\mysql -h localhost -u root mertero_decicare < D:\localhost\sql\decisions.sql';

$out = shell_exec($shellExec .' 2> output');

Which works. But is there a way to 'find' the location of the mysql executable from PHP? SO I don't need to hardcaord my mysql location?

Ron

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

信仰 2024-09-17 19:00:01

执行此操作的一个简单方法是将其添加到 Windows 环境路径(它位于大多数 Unix 系统上的路径中)。然后你只需从脚本中调用 mysql 即可。

以下是有关如何从 MySQL 执行此操作的信息页面:
MySQL Windows 服务启动

在该页面上你想找到文字

“为了更方便地调用MySQL程序,可以将MySQL bin目录的路径名添加到Windows系统PATH环境变量中”

并通读该部分。使用这种方法你只需要调用mysql而不需要路径。

An easy way to do this is add it to the Windows Environment path (it is in the path on most Unix systems). Then you just have to call mysql from the script.

Here is the information page on how to do it from MySQL:
MySQL Windows Service Start

And on that page you want to find the text

"To make it easier to invoke MySQL programs, you can add the path name of the MySQL bin directory to your Windows system PATH environment variable"

and read through that section. Using this method you just have to call mysql without a path.

童话 2024-09-17 19:00:01

在 Windows 上,可以将 C:\wamp\bin\mysql\mysql5.1.36\bin\ 添加到环境变量路径中。请参阅: http://en.wikipedia.org/wiki/Environment_variable

这样你就可以调用 shell_exec('mysql ...');

或者,您不能使用 mysqldump,您可以在 MySQL 中使用 SELECT INTO OUTFILE,尽管您需要对每个表执行此操作。不像 mysqldump 那么优雅。

On Windows to could add C:\wamp\bin\mysql\mysql5.1.36\bin\ to you Environment Variables path. See: http://en.wikipedia.org/wiki/Environment_variable

That way you could just call shell_exec('mysql ...');

Alernatively you could not use mysqldump, you could use SELECT INTO OUTFILE in MySQL although you'd need to do it for each table. Not as elegant as mysqldump.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文