从 PHP 确定 MySql 模式
有什么方法可以从 PHP 中查找 mysql 服务器是否处于严格模式? 我需要在运行时(在安装脚本中)找出这一点,这样我就可以通知用户他的系统是否满足脚本要求。
Is there any way to find if mysql server is in strict mode or not from PHP?
I need to find out this at runtime(in installation script), so I can inform user if his system satisfy script requirements.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SELECT @@sql_mode;
会给出你想要的。SELECT @@sql_mode;
will give what you want.我认为你可以运行一个简单的查询,比如
This 应该能够得到你的 SQL 模式。更多信息请参见 http://dev.mysql。 com/doc/refman/5.0/en/server-sql-mode.html 了解如何在需要时管理模式。
I think you can run a simple query like
This should be able to get you your SQL mode. There is more information at http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html about how you can manage the mode if need be.