我可以自动从 PHP 找到 MySQL 可执行文件吗?
我需要运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
执行此操作的一个简单方法是将其添加到 Windows 环境路径(它位于大多数 Unix 系统上的路径中)。然后你只需从脚本中调用 mysql 即可。
以下是有关如何从 MySQL 执行此操作的信息页面:
MySQL Windows 服务启动
在该页面上你想找到文字
并通读该部分。使用这种方法你只需要调用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
and read through that section. Using this method you just have to call mysql without a path.
在 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.