$eng = "Let's PHP";
$jpn = "PHP最強伝説";
if(true == ($eng && $jpn)) {
$your_spec = "nice";
}
echo $your_spec;
-----
Are your specs understood?
I hate PHP.
>>2
But why?
> if(true == ($eng && $jpn))
Surely you can replace this with
if ($eng==$jpn)
$eng===$jpn