服务器之家

服务器之家 > 正文

PHP实现SQL语句格式化功能的方法

时间:2021-06-09 16:37     来源/作者:PHP教程网

本文实例讲述了php实现sql语句格式化功能的方法。分享给大家供大家参考,具体如下:

一、问题:

要求使用php实现针对sql语句的格式化功能

二、解决方法:

这里使用github上的开源代码实现sql格式化功能。

github下载地址:https://github.com/till/sql-formatter

使用方法:

include包含sqlformatter.php文件,针对sql语句使用format方法即可实现格式化功能。

具体代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
<?php
include('sqlformatter.php');
$sql="select date_format(b.t_create, '%y-%c-%d') dateid, b.title memo
  from (select id from orc_scheme_detail d where d.business=208
  and d.type in (29,30,31,321,33,34,3542,361,327,38,39,40,41,42,431,4422,415,4546,47,48,'a',
  29,30,31,321,33,34,3542,361,327,38,39,40,41,42,431,4422,415,4546,47,48,'a')
  and d.title is not null and t_create >=
  date_format((date_sub(now(),interval 1 day)),'%y-%c-%d') and t_create
  < date_format(now(), '%y-%c-%d') order by d.id limit 2,10) a,
  orc_scheme_detail b where a.id = b.id";
echo sqlformatter::format($sql);
?>

运行结果如下图所示:

PHP实现SQL语句格式化功能的方法

ps:更多的用法还可参考源码中的examples.php示例

希望本文所述对大家php程序设计有所帮助。

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国 2021-05-08
返回顶部