X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fclass_BaseFrameworkSystem.php;fp=inc%2Fclasses%2Fmain%2Fclass_BaseFrameworkSystem.php;h=3f3e6f7a779e7d06882c5871cfb3e24c5fcded7e;hp=2b2d2683109df9c224f0d4d788370e09248010f1;hb=be65e8b394b142696c4a72b5945cd2a3e6d3585c;hpb=4bf128b841cdd5180e9fb9d9eaa8b3cd3e3eed90 diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index 2b2d2683..3f3e6f7a 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -279,7 +279,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { * * The integer size is 4 bytes on 32-bit and 8 bytes on a 64-bit system. */ - private $archArrayElement = (PHP_INT_SIZE === 8 ? 64 : 32); + private $archArrayElement = FALSE; /*********************** * Exception codes.... * @@ -415,6 +415,9 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { // Then set it self::$startupTime = microtime(TRUE); } // END - if + + // Set array element + $this->archArrayElement = (PHP_INT_SIZE === 8 ? 64 : 32); } /**