且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

从 PHP 脚本中执行 MySQL 脚本?

更新时间:2023-11-30 12:07:46

怎么样?

bar.php:

<?php `mysql < foo.sql`;

请参阅执行运算符文档在批处理模式下使用 mysql文档.

这是推荐的 [...] 做法,为什么 [...] ?

is this a recommended [...] practice, why [...] ?

始终建议为工作选择合适的工具.mysql 命令行界面非常强大、快速且经过充分测试.它可以满足您的需求.

It's always recommended to choose the right tool for the job. the mysql commandline interface is pretty powerful, fast and well-tested. It does what you're looking for.

相关: 从 PHP 中加载 .sql 文件***实践:在 PHP 中导入 mySQL 文件;拆分查询.