Conditions | 5 |
Paths | 5 |
Total Lines | 20 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 30 |
Changes | 0 |
1 | <?php |
||
21 | public function convertToSQL($value) |
||
22 | { |
||
23 | if (empty($value)) { |
||
24 | return '{}'; |
||
25 | } |
||
26 | |||
27 | $result = ''; |
||
28 | |||
29 | foreach ($value as $part) { |
||
30 | if (null === $part) { |
||
31 | $result .= 'NULL,'; |
||
32 | } elseif ('' === $part) { |
||
33 | $result .= '"",'; |
||
34 | } else { |
||
35 | $result .= '"' . addcslashes($part, '"') . '",'; |
||
36 | } |
||
37 | } |
||
38 | |||
39 | return '{' . substr($result, 0, -1) . '}'; |
||
40 | } |
||
41 | |||
63 |