我有一个哈希映射,其中包含某些键,这些键是它们的值的排序版本。例如,
$hash = array( "abc" => "cab",
"aas" => "sas"
);
我还有一个排序字符串数组($sorted_words),我想将所有这些字符串与上述哈希映射的键进行比较,如果找到匹配项,则将相应的值存储在字符串中。我使用 === 和 strcmp(),但都不起作用。它总是说字符串不匹配。这是我的代码:
foreach($sorted_words as $sc) {
foreach($hash as $key => $value) {
if(strcmp($sc, $key) == 0) { // or if($sc === $key)
$string_match .= $value; // store the corresponding value for the matched key.
}
}
}
但是比较失败,因为 strcmp() 总是返回大于 1 并且 '===' 永远不会返回 true。谁能告诉我出了什么问题?我很确定会有匹配的字符串。