Explorar o código

Deprecated: iconv_strlen(): Passing null to parameter #1 ($string) of type string is deprecated in C:\MyPrograms\OSPanel\domains\enginegp.local\system\library\system.php on line 690

Sergei Solovev %!s(int64=2) %!d(string=hai) anos
pai
achega
7762e3a0a2
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      system/library/system.php

+ 4 - 0
system/library/system.php

@@ -687,6 +687,10 @@
 
         public static function strlen($str)
         {
+            if ($str === null) {
+                return 0;
+            }
+
             return iconv_strlen($str, 'UTF-8');
         }