Sql.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 海豚PHP框架 [ DolphinPHP ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2016~2017 河源市卓锐科技有限公司 [ http://www.zrthink.com ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://dolphinphp.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( http://www.apache.org/licenses/LICENSE-2.0 )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/caiweiming/parse-sql-file
  12. // +----------------------------------------------------------------------
  13. namespace util;
  14. /**
  15. * 读取Sql文件并返回可执行的sql语句
  16. * @author CaiWeiMing <314013107@qq.com>
  17. */
  18. class Sql
  19. {
  20. /**
  21. * 从sql文件获取纯sql语句
  22. * @param string $sql_file sql文件路径
  23. * @param bool $string 如果为真,则只返回一条sql语句,默认以数组形式返回
  24. * @param array $replace 替换前缀,如:['my_' => 'me_'],表示将表前缀"my_"替换成"me_"
  25. * 这种前缀替换方法不一定准确,比如正常内容内有跟前缀相同的字符,也会被替换
  26. * @return mixed
  27. */
  28. public static function getSqlFromFile($sql_file = '', $string = false, $replace = [])
  29. {
  30. if (!file_exists($sql_file)) {
  31. return false;
  32. }
  33. // 读取sql文件内容
  34. $handle = self::read_file($sql_file);
  35. // 分割语句
  36. $handle = self::parseSql($handle, $string, $replace);
  37. return $handle;
  38. }
  39. /**
  40. * 分割sql语句
  41. * @param string $content sql内容
  42. * @param bool $string 如果为真,则只返回一条sql语句,默认以数组形式返回
  43. * @param array $replace 替换前缀,如:['my_' => 'me_'],表示将表前缀my_替换成me_
  44. * @return array|string 除去注释之后的sql语句数组或一条语句
  45. */
  46. public static function parseSql($content = '', $string = false, $replace = [])
  47. {
  48. // 被替换的前缀
  49. $from = '';
  50. // 要替换的前缀
  51. $to = '';
  52. // 替换表前缀
  53. if (!empty($replace)) {
  54. $to = current($replace);
  55. $from = current(array_flip($replace));
  56. }
  57. if ($content != '') {
  58. // 纯sql内容
  59. $pure_sql = [];
  60. // 多行注释标记
  61. $comment = false;
  62. // 按行分割,兼容多个平台
  63. $content = str_replace(["\r\n", "\r"], "\n", $content);
  64. $content = explode("\n", trim($content));
  65. // 循环处理每一行
  66. foreach ($content as $key => $line) {
  67. // 跳过空行
  68. if ($line == '') {
  69. continue;
  70. }
  71. // 跳过以#或者--开头的单行注释
  72. if (preg_match("/^(#|--)/", $line)) {
  73. continue;
  74. }
  75. // 跳过以/**/包裹起来的单行注释
  76. if (preg_match("/^\/\*(.*?)\*\//", $line)) {
  77. continue;
  78. }
  79. // 多行注释开始
  80. if (substr($line, 0, 2) == '/*') {
  81. $comment = true;
  82. continue;
  83. }
  84. // 多行注释结束
  85. if (substr($line, -2) == '*/') {
  86. $comment = false;
  87. continue;
  88. }
  89. // 多行注释没有结束,继续跳过
  90. if ($comment) {
  91. continue;
  92. }
  93. // 替换表前缀
  94. if ($from != '') {
  95. $line = str_replace('`'.$from, '`'.$to, $line);
  96. }
  97. // sql语句
  98. array_push($pure_sql, $line);
  99. }
  100. // 只返回一条语句
  101. if ($string) {
  102. return implode("",$pure_sql);
  103. }
  104. // 以数组形式返回sql语句
  105. $pure_sql = implode("\n",$pure_sql);
  106. $pure_sql = explode(";\n", $pure_sql);
  107. return $pure_sql;
  108. } else {
  109. return $string == true ? '' : [];
  110. }
  111. }
  112. /**
  113. * 读取文件内容
  114. * @param $filename 文件名
  115. * @return string 文件内容
  116. */
  117. public static function read_file($filename) {
  118. $content = '';
  119. if(function_exists('file_get_contents')) {
  120. @$content = file_get_contents($filename);
  121. } else {
  122. if(@$fp = fopen($filename, 'r')) {
  123. @$content = fread($fp, filesize($filename));
  124. @fclose($fp);
  125. }
  126. }
  127. return $content;
  128. }
  129. }