Conditions | 4 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public static function convertToSnakeCase($string) |
||
17 | { |
||
18 | $result = ''; |
||
19 | $len = strlen($string); |
||
20 | |||
21 | for ($i = 0; $i < $len; ++$i) { |
||
22 | if ($i !== 0 && ctype_upper($string[$i])) { |
||
23 | $result .= '_'.strtolower($string[$i]); |
||
24 | } else { |
||
25 | $result .= strtolower($string[$i]); |
||
26 | } |
||
27 | } |
||
28 | |||
29 | return $result; |
||
30 | } |
||
31 | } |
||
32 |