Skip to content
Advertisement

Convert PostgreSQL array to PHP array

I have trouble reading Postgresql arrays in PHP. I have tried explode(), but this breaks arrays containing commas in strings, and str_getcsv() but it’s also no good as PostgreSQL doesn’t quote the Japanese strings.

Not working:

JavaScript

Example:

JavaScript

Advertisement

Answer

If you have PostgreSQL 9.2 you can do something like this:

JavaScript

The result will return the array as JSON

Then on the php side issue:

JavaScript

You can also convert back. Here are the JSON functions page

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement