Sven Rymenants

Results 6 comments of Sven Rymenants

Just checked one of my databases, in one table we have >3.6M records, we've seen no issues but we have a lot of memory.

This can be reproduced like this: ``` $obj = (object) [ 'one', 'two' ]; echo Debug::dump($obj); ```

1/ as_array doesn't change the type since we wanted to keep everything backward compatible. 2/ The missing $show_all is a bug. I can create a PR. 3/ What do you...

1/ Array values are now returned as strings; so the the type of "id" is in the current version string, if it is normalized it would return an integer. Which...

If someone would use the identical operator (`===`) in the application code (not the framework) to check on a value returning native types will break his code. Another option is...

The function ``return_types()`` with an array can overcome the problem that some databases don't return the type of a column (see [https://github.com/koseven/koseven/blob/devel/modules/database/classes/KO7/Database/PDO.php#L240)](https://github.com/koseven/koseven/blob/f9a81bccf00ff311aa584890c329eb8889c402ad/modules/database/classes/KO7/Database/PDO.php#L240) If that features is implemented ``as_array``, ``as_object`` and...