gpt4 book ai didi

MySql 搜索查询无法返回内部包含 %20 的行

转载 作者:行者123 更新时间:2023-11-29 23:24:15 24 4
gpt4 key购买 nike

我的数据库查询有问题。当我尝试提取之前将空格转换为 %20 的行时,查询返回 null。我测试了其他行都工作正常,为什么会出现这个问题?我是否需要手动从每行删除 %20 才能使其正常工作?

谢谢!

database screenshot

<?php

include_once 'includes/db_connect.php';

$query = "SELECT * FROM USERS WHERE LIKES= '$_GET[imgname]' ";

//Creating resonse json array, with another array inside
$jsonResponse = array( "info" =>array() );

if($result = mysqli_query($mysqli, $query)) {
while($row = mysqli_fetch_assoc($result)){

$jsonRow = array(

'names' => $row['USERNAME'],
'userIds' => $row['USERID']

);

//adding the $jsonRow array to the end of the "users" array as key/value
array_push($jsonResponse["info"], $jsonRow);
}

}
//encoding to json for the app
echo json_encode($jsonResponse);



?>

最佳答案

将 SQL 查询更改为:

$query = "SELECT * FROM USERS WHERE LIKES= '".rawurlencode($_GET[imgname])."' ";

LIKES 列已编码图像路径(空格转换为 %20)。因此,应对 $_GET[imgname] 进行编码以匹配数据库记录。

关于MySql 搜索查询无法返回内部包含 %20 的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27079592/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com