Bonjour,
Parcourant du code écrit par le logiciel Dweaver, je tombe régulièrement sur une trentaine de lignes se rapportant à un machin appelé GetSQLValueString. Est-ce que ce machin sert à quelque chose, et si oui, à quoi? (j'aime bien comprendre ce que je fais, des fois
  
  ).
Le machin:
 
      
      
    Parcourant du code écrit par le logiciel Dweaver, je tombe régulièrement sur une trentaine de lignes se rapportant à un machin appelé GetSQLValueString. Est-ce que ce machin sert à quelque chose, et si oui, à quoi? (j'aime bien comprendre ce que je fais, des fois
  
  ).Le machin:
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;
}
}