Erreur suite MAJ Doryphore 4.5.0

Bonjour,

j’ai souhaité faire la MAJ de mon YesWiki vers vers la version doryphore 4.5.0.
J’ai depuis une erreur affiché sur mon YesWiki : Unsupported operand types: string * int

La partie de code mise en cause :

> public function parse_size($size)
>     {
>         $unit = preg_replace('/[^bkmgtpezy]/i', '', $size); // Remove the non-unit characters from the size.
>         $size = preg_replace('/[^0-9\.]/', '', $size); // Remove the non-numeric characters from the size.
>         if ($unit) {
>             // Find the position of the unit in the ordered string which is the power of magnitude to multiply a kilobyte by.
>             return intval(round($size * pow(1024, stripos('bkmgtpezy', $unit[0]))));
>         } else {
>             return intval(round($size));
>         }
>     }

Je précise que je suis sur une la version PHP 8.3.

Je ne me sens pas de faire une correction tout seul. Quelqu’un a-t-il une idée ?

Merci d’avance,
Cordialement

J’ai finalement pu corriger l’erreur avec le code ci dessous :

public function parse_size($size)
    {
        $unit = preg_replace('/[^bkmgtpezy]/i', '', $size); // Remove the non-unit characters from the size.
        $size = intval(preg_replace('/[^0-9\.]/', '', $size)); // Remove the non-numeric characters from the size.
        if ($unit) {
            // Find the position of the unit in the ordered string which is the power of magnitude to multiply a kilobyte by.
            return intval(round($size * pow(1024, stripos('bkmgtpezy', $unit[0]))));
        } else {
            return intval(round($size));
        }
    }
2 « J'aime »