gpt4 book ai didi

php - 如何通过PHP检查MySQL中没有空格的字符串

转载 作者:行者123 更新时间:2023-11-29 04:39:19 27 4
gpt4 key购买 nike

我在 PHP 中有这个查询:

DELETE FROM table1 
where filename="'.$name.'"
and id=(select id from table2 where cat="'.$category.'")

问题是字符串 $name 没有空格,而 table1 中的相关字段有空格。我该如何控制?

已解决

我用 MySQL replace() 函数解决了这个问题。 Trim() 函数不起作用。

最佳答案

使用修剪():

DELETE FROM table1 where TRIM(filename) = "'.$name.'" and id = (select id from table2 where cat="'.$category.'")'

MySQL 修剪: http://www.w3resource.com/mysql/string-functions/mysql-trim-function.php

关于php - 如何通过PHP检查MySQL中没有空格的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33255985/

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