这个PHP代码是必要的吗?

时间:2016-11-09 12:39:00

标签: php

我使用Dreamweaver为我生成一些PHP,并将此代码放在页面顶部。我只是想知道是否有人可以告诉我我是否真的需要它以及它有什么作用? (我知道被弃用的mysql)...

if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
    {
       if (PHP_VERSION < 6) {
          $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
       }

       $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

       switch ($theType) {
       case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;  

       case "long":

       case "int":
           $theValue = ($theValue != "") ? intval($theValue) : "NULL";
           break;

       case "double":
           $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
           break;

       case "date":
           $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
           break;

       case "defined":
           $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
           break;

        }
  return $theValue;
  }
  }

1 个答案:

答案 0 :(得分:0)

编辑:社区维基答案应由能够为答案做出贡献的任何人编辑。如果我没有完全回答这个问题,那么非常欢迎您编辑和/或添加一些信息以便为其做出贡献,而不是低估并且不说任何内容。

  • 这就是社区(wiki)的用途。

发布为社区维基,因为问题过于宽泛(可能基于意见),并且评论时间过长。

  • 您似乎是PHP / MySQL的新手。

如果你想要运行PHP / MySQL代码,那么是的,你需要使用PHP并作为.php扩展名。

如果您想要以.html文件运行,那么您需要指示系统将它们视为PHP。

直接将php运行到浏览器(例如file:///)将无法解析PHP或运行任何MySQL指令。

它需要运行网络服务器并使用http://localhost或支持PHP和MySQL的托管网站。

至于它的作用,由你来阅读它上面的文档,以及阅读关于php / mysql函数的php.net上的手册。