gpt4 book ai didi

php - 字符串中的与号导致长度/比较不正确

转载 作者:行者123 更新时间:2023-12-02 07:03:47 24 4
gpt4 key购买 nike

我有两个字符串(应该是相同的)。一种是从 API 结果中提取的,一种是由用户输入的。我试图比较它们并且失败了。当我 var_dump 时,我得到以下信息:

var_dump($str1);
var_dump($str2);

string(21) "Software & Technology"
string(25) "Software & Technology"

请注意 $str2 的错误长度。有谁知道这里发生了什么?

最佳答案

您似乎有 HTML &字符 &在其中一个字符串中。
您应该使用 html_entity_decode在比较字符串之前:

if (html_entity_decode($str1) == html_entity_decode($str2)) {
// ...
}

现场演示: http://ideone.com/pkWEJC

关于php - 字符串中的与号导致长度/比较不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15908537/

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