<?php $str1 = "a\u{0300}"; $str2 = "à"; // str1 and str2 produce the same character! // what we normally do: var_dump($str1 === $str2); // what we should be doing in php: $str1 = Normalizer::normalize($str1); $str2 = Normalizer::normalize($str2); var_dump($str1 === $str2);
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`