Remove utf8_encode polyfill (#201)

utf8_encode is included with PHP 7.2, which is our minimum required version.
This commit is contained in:
Wruczek
2021-10-16 00:03:05 +02:00
committed by GitHub
parent 5661bfb9f6
commit e1a6345338
2 changed files with 0 additions and 31 deletions

View File

@ -94,19 +94,6 @@ function checkRequirements() {
);
}
// Check if we are using polyfill for utf8_encode
{
$result = defined("__USING_U8ENC_POLYFILL");
showCheckResult(
"Function <code>utf8_encode</code> exists",
$result ? 1 : 0,
$result ?
"Function not found, using polyfill" :
"Function exists"
);
}
displayCategory("Extension checks");
// Extensions check