<?php
$string1 = "12 jan";
$string2 = "12 aprail, 13 march";
$result = strcmp($string1, $string2);
switch ($result) {
case -1: print "date are not identical"; break;
case 0: print "date1"; break;
case 1: print "date are identical"; break;
}
?>
當我使用這個代碼,它會告訴我的日期是相同的連值ex 當我比較值的1月12日至3月12日 它會告訴我的價值是相同的 但值是不同的比較字符串