「php」strcmp()で文字列の値を比較する

構文
int strcmp(string $str1 , string $str2 )
phpコード

$cftA = "Tokyo";
$cftB = "Tokyo";
$cftC = "TokyoHulu";

if(strcmp($cftA,$cftB)==0){
      print "文字列AとBが一致"; 
}else{
      print "文字列AとBが不一致";
}

if(strcmp($cftA,$cftC)==0){
      print "文字列AとCが一致";
}else{
      print "文字列AとCが不一致"; 
}

結果
文字列AとBが一致
文字列AとCが不一致

PHP

Posted by arkgame