gpt4 book ai didi

php - strcmp() 为不同的字符串返回 -1

转载 作者:行者123 更新时间:2023-12-04 10:24:09 27 4
gpt4 key购买 nike

<?php
$html = file_get_contents("https://www.casa.gov.au/rpa-operator-certificate-holders");
$pokemon_doc = new DOMDocument();
libxml_use_internal_errors(TRUE);
if(!empty($html)){

$pokemon_doc->loadHTML($html);
libxml_clear_errors();
$pokemon_xpath = new DOMXPath($pokemon_doc);
$pokemon_row = $pokemon_xpath->query('//tr');

if($pokemon_row->length > 0){
$s4 = "4 ONE 4 REAL ESTATE PTY LTD ";
$s5 = ($pokemon_row[2]->firstChild->nodeValue);
echo strcmp($s4,$s5);
}

}
?>

从上面的代码中,我试图比较这个站点表中的字符串(“ https://www.casa.gov.au/rpa-operator-certificate-holders”),但是当我使用 strcmp() 时我没有得到输出为 0,而是得到输出为 -1

最佳答案

问题是您要比较的字符串周围有额外的空格。如果添加

echo ">".$s4."<>".$s5."<";

你得到
>4 ONE 4 REAL ESTATE PTY LTD <>
4 ONE 4 REAL ESTATE PTY LTD <

您可以轻松地将比较更改为...
echo strcmp(trim($s4),trim($s5));

关于php - strcmp() 为不同的字符串返回 -1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60702062/

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