Casting in Entity Classes |
Hi,
in my database i have a column with an serialized object. https://codeigniter4.github.io/userguide...on-casting Neither json nor array or json-array are working. With array i got an array with the original string as the first element. The documentation says unserialize is used and i expected to unserialze my serialized object. Why is it not working?
If you use JSON column in database, you must use JSON cast in entity.
If you use TEXT (VARCHAR) column in database, you can use ARRAY cast in entity. You do not need to unserialize object from database yourself. It will be automagically converted to array once entity is loaded through model from database. From my experience, if you use your own serialized object and save in database manually, most probably ARRAY cast will not be able to convert it to php array as you expect. Instead, always load new entity, fill variable as php array and save entity through model in database, then serialised object will be correct to retrieve it back as array. Entity serialize is not exactly the same as simple php array serialize. You can follow the system code to investigate yourself.
Thank you.
The only solution i could solve the problem was a custom cast. Then i used the unserialize function and it is working. I think i found the reason why it is not working. This is from the ArrayCast Class: PHP Code: if ((str_starts_with($value, 'a:') || str_starts_with($value, 's:'))) { My serialized string of the object starts with O:8:"stdClass" Maybe in the future there is a feature to use an object as well :-) |
Welcome Guest, Not a member yet? Register Sign In |