We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a15f44e commit 93b806eCopy full SHA for 93b806e
src/MartinGeorgiev/Utils/DataStructure.php
@@ -26,7 +26,7 @@ public static function transformPostgresTextArrayToPHPArray(string $postgresArra
26
throw new \InvalidArgumentException('Only single-dimensioned arrays are supported');
27
}
28
29
- $phpArray = \str_getcsv(\trim($textArrayToTransform, '{}'), escape: '');
+ $phpArray = \str_getcsv(\trim($textArrayToTransform, '{}'), escape: '\\');
30
foreach ($phpArray as $i => $text) {
31
if ($text === null) {
32
unset($phpArray[$i]);
0 commit comments