都市の状態の文字列から都市を抽出しようとしている以下のコードがあります。ほとんどの場合は機能しますが、コロラド州が都市であり、州でもあるため、以下では機能しないことがわかりました. $geography_nav
コロラドスプリングスを作成する必要があり、州が都市文字列の一部ではない場合にも機能する必要があります。これを達成する方法について何か考えはありますか?
$geography->description = Colorado
$geography->name- = Colorado Springs Colorado
$geography_nav=explode($geography->description, $geography->name);</code>
I am updating this, I don't necessarly need to use explode, just trying to find some way to extract the city out of the city state string. The format will always be the same as shown above in $Geography->name
and the
$Geography->description
常に州名と同じになります。