Created
February 17, 2022 05:16
-
-
Save WGrape/0f925647b958342b1f0d5874a3b9b57d to your computer and use it in GitHub Desktop.
下划线转驼峰
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function snakeToCamelCase($string){ | |
$result = ''; | |
$subIndexArr = explode('_', $string); | |
foreach ($subIndexArr as $index => $temp) { | |
if ($index === 0) { | |
$result .= $temp; | |
} else { | |
$result .= ucfirst($temp); | |
} | |
} | |
return $result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment