Fatal Error

Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) search►

File: .../pracovniprilezitost.cz/vendor/nette/database/src/Database/Helpers.php:212

202: 203: 204: /** @internal */ 205: public static function normalizeRow(array $row, ResultSet $resultSet): array 206: { 207: foreach ($resultSet->getColumnTypes() as $key => $type) { 208: $value = $row[$key]; 209: if ($value === null || $value === false || $type === IStructure::FIELD_TEXT) { 210: // do nothing 211: } elseif ($type === IStructure::FIELD_INTEGER) { 212: $row[$key] = is_float($tmp = $value * 1) ? $value : $tmp; 213: 214: } elseif ($type === IStructure::FIELD_FLOAT) { 215: if (is_string($value) && ($pos = strpos($value, '.')) !== false) { 216: $value = rtrim(rtrim($pos === 0 ? "0$value" : $value, '0'), '.');