1 | <?php |
||
25 | trait QuoteTrait |
||
26 | { |
||
27 | /** |
||
28 | * Quote string base on settings only if '[a-zA-Z_.\$]' found |
||
29 | * |
||
30 | * - username to `username` |
||
31 | * - u.username to `u`.`username` |
||
32 | * |
||
33 | * @param string $str |
||
34 | * @param string $prefix |
||
35 | * @param string $suffix |
||
36 | * @return string |
||
37 | * @access protected |
||
38 | */ |
||
39 | protected function quote( |
||
57 | } |
||
58 |