我有一个列mysql表table_php_code,其中包含列id& code_data。我需要使用我必须获得Id的代码搜索此表。
e.g。
现在这个code_data列可能包含普通php代码中存在的特殊字符(新行,额外空格,单引号,双引号),使用addslashes php函数存储在表中。
现在,如果我有一个包含所有特殊字符的示例代码,我该如何在此表中搜索它。 简单的选择语句
select * from table_php_code where code_data = '<code_data_to_search>';
似乎总是不起作用。
请注意我尝试过的事情
$query = "select * from table_php_code where REPLACE(code_data, '\r\n','')= ".addslashes(str_replace('\r\n', '', $code_data)).";";
需要搜索的示例代码
<?php
$userId=$_REQUEST["TARGET_USER_ID"];
$geolocation=$_REQUEST["TARGET_GEOLOCATION"];
$matches = preg_split("/[\s,]/", $geolocation);
$geolat=$matches[0];
$geolong=$matches[1];
$app_id="80";
$style="sban";
$max_width = $_REQUEST['max_image_width'];
if(empty($width) && (!empty($max_width)) && ($max_width > 539)) $width= '540';
if(empty($height) && (!empty($max_width)) && ($max_width > 539)) $height= '84';
if(empty($width) && (!empty($max_width)) && ($max_width > 459)) $width= '480';
if(empty($height) && (!empty($max_width)) && ($max_width > 459)) $height= '75';
if(empty($width) && (!empty($max_width)) && ($max_width > 299)) $width= '320';
if(empty($height) && (!empty($max_width)) && ($max_width > 299)) $height= '50';
if(empty($width) && (!empty($max_width)) && ($max_width > 239)) $width= '240';
if(empty($height) && (!empty($max_width)) && ($max_width > 239)) $height= '38';
if(empty($width)) $width= '320';
if(empty($height)) $height= '50';
$url="someurl".$userId."&_id=".$_id."&width=".$width."&height=".$height."&style=".$style."&lat=".$geolat."&long=".$geolong;
$info= '<script type="text/javascript" src="'.$url.'"></script>';
$info = '<meta name="viewport" content="somecontent, width=device-width, user-scalable=no" />' .$info;
echo $info;
?>
答案 0 :(得分:1)
如果它包含一些阻止查询的特殊字符,则必须将它们转义:
SELECT *
FROM table
WHERE field LIKE 'my \"text\"' ESCAPE '\';
这将逃脱'\'
之后的每个字符答案 1 :(得分:0)
您可以使用
select *
from table_php_code
where MATCH (code_data) AGAINST ('some text');