Posted by Patrick Brunmayr on 10/03/07 20:54
On 28 Sep., 13:45, Christian Bruckhoff <brchr...@uni-koblenz.de>
wrote:
> Hi.
>
> How is it possible to compare two strings with umlauts (z.B.
> "unregelmäßig"). It doesn't work neither with array_search()nor with an
> if-statement.
>
> cya
> Christian
this is very hard to answer if you dont post the version of php you
are using.
i tried the following script with php 5.2.3
<?
$str = "unregelmäßig";
if($str == "unregelmäßig"){
echo "Foo";
}
?>
the output was Foo ;) so it worked well!
[Back to original message]
|