PHP 8.5.0 Alpha 4 available for testing

Voting

: min(six, one)?
(Example: nine)

The Note You're Voting On

praveenscience at gmail dot com
10 years ago
I used this simple script, flicked from StackOverflow to escape from the function failing:

<?php
function utf8ize($d) {
if (
is_array($d)) {
foreach (
$d as $k => $v) {
$d[$k] = utf8ize($v);
}
} else if (
is_string ($d)) {
return
utf8_encode($d);
}
return
$d;
}
?>

Cheers,
Praveen Kumar!

<< Back to user notes page

To Top