PHP下划线风格和驼峰风格相互转换
发布时间:2021-08-06, 15:47:33 分类:PHP | 编辑 off 网址 | 辅助
正文 10369字数 44,480阅读
网上其实已经有很多这种方法了,今天在thinkphp源码中看到了他的实现,感觉还是很巧妙的,记录一下
<?php
/**
* 下划线命名风格转换成驼峰命名风格
* @param $string
* @param bool $ucfirst 转换后首字母是否大写
* @return mixed|string
*/
function parseCamel($string, $ucfirst = false)
{
//替换过程 name_style => _s => s => S => nameStyle
$string = preg_replace_callback('/_([a-zA-Z])/', function ($match) {
return strtoupper($match[1]);
}, $string);
return $ucfirst ? ucfirst($string) : $string;
}
/**
* 驼峰命名风格转换成下划线命名风格
* @param $string
* @return string
*/
function parseUnderline($string)
{
//替换过程 NameStyle => N | S => _N | _S => _Name_Style => Name_Style => name_style
$string = strtolower(trim(preg_replace("/[A-Z]/", "_\\0", $string), "_"));
return $string;
}
echo parseCamel('name_style') . "\n"; //输出 nameStyle
echo parseCamel('name_style', true) . "\n"; //输出 NameStyle
echo parseUnderline('NameStyle') . "\n"; //输出 name_style
Run code
Cut to clipboard
TP源码:
"\vendor\topthink\think-helper\src\helper\Str.php
Run code
Cut to clipboard
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2015 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: yunwuxin <448901948@qq.com>
// +----------------------------------------------------------------------
namespace think\helper;
class Str
{
protected static $snakeCache = [];
protected static $camelCache = [];
protected static $studlyCache = [];
/**
* 检查字符串中是否包含某些字符串
* @param string $haystack
* @param string|array $needles
* @return bool
*/
public static function contains(string $haystack, $needles): bool
{
foreach ((array) $needles as $needle) {
if ('' != $needle && mb_strpos($haystack, $needle) !== false) {
return true;
}
}
return false;
}
/**
* 检查字符串是否以某些字符串结尾
*
* @param string $haystack
* @param string|array $needles
* @return bool
*/
public static function endsWith(string $haystack, $needles): bool
{
foreach ((array) $needles as $needle) {
if ((string) $needle === static::substr($haystack, -static::length($needle))) {
return true;
}
}
return false;
}
/**
* 检查字符串是否以某些字符串开头
*
* @param string $haystack
* @param string|array $needles
* @return bool
*/
public static function startsWith(string $haystack, $needles): bool
{
foreach ((array) $needles as $needle) {
if ('' != $needle && mb_strpos($haystack, $needle) === 0) {
return true;
}
}
return false;
}
/**
* 获取指定长度的随机字母数字组合的字符串
*
* @param int $length
* @param int $type
* @param string $addChars
* @return string
*/
public static function random(int $length = 6, int $type = null, string $addChars = ''): string
{
$str = '';
switch ($type) {
case 0:
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' . $addChars;
break;
case 1:
$chars = str_repeat('0123456789', 3);
break;
case 2:
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' . $addChars;
break;
case 3:
$chars = 'abcdefghijklmnopqrstuvwxyz' . $addChars;
break;
case 4:
$chars = "们以我到他会作时要动国产的一是工就年阶义发成部民可出能方进在了不和有大这主中人上为来分生对于学下级地个用同行面说种过命度革而多子后自社加小机也经力线本电高量长党得实家定深法表着水理化争现所二起政三好十战无农使性前等反体合斗路图把结第里正新开论之物从当两些还天资事队批点育重其思与间内去因件日利相由压员气业代全组数果期导平各基或月毛然如应形想制心样干都向变关问比展那它最及外没看治提五解系林者米群头意只明四道马认次文通但条较克又公孔领军流入接席位情运器并飞原油放立题质指建区验活众很教决特此常石强极土少已根共直团统式转别造切九你取西持总料连任志观调七么山程百报更见必真保热委手改管处己将修支识病象几先老光专什六型具示复安带每东增则完风回南广劳轮科北打积车计给节做务被整联步类集号列温装即毫知轴研单色坚据速防史拉世设达尔场织历花受求传口断况采精金界品判参层止边清至万确究书" . $addChars;
break;
default:
$chars = 'ABCDEFGHIJKMNPQRSTUVWXYZabcdefghijkmnpqrstuvwxyz23456789' . $addChars;
break;
}
if ($length > 10) {
$chars = $type == 1 ? str_repeat($chars, $length) : str_repeat($chars, 5);
}
if ($type != 4) {
$chars = str_shuffle($chars);
$str = substr($chars, 0, $length);
} else {
for ($i = 0; $i < $length; $i++) {
$str .= mb_substr($chars, floor(mt_rand(0, mb_strlen($chars, 'utf-8') - 1)), 1);
}
}
return $str;
}
/**
* 字符串转小写
*
* @param string $value
* @return string
*/
public static function lower(string $value): string
{
return mb_strtolower($value, 'UTF-8');
}
/**
* 字符串转大写
*
* @param string $value
* @return string
*/
public static function upper(string $value): string
{
return mb_strtoupper($value, 'UTF-8');
}
/**
* 获取字符串的长度
*
* @param string $value
* @return int
*/
public static function length(string $value): int
{
return mb_strlen($value);
}
/**
* 截取字符串
*
* @param string $string
* @param int $start
* @param int|null $length
* @return string
*/
public static function substr(string $string, int $start, int $length = null): string
{
return mb_substr($string, $start, $length, 'UTF-8');
}
/**
* 驼峰转下划线
*
* @param string $value
* @param string $delimiter
* @return string
*/
public static function snake(string $value, string $delimiter = '_'): string
{
$key = $value;
if (isset(static::$snakeCache[$key][$delimiter])) {
return static::$snakeCache[$key][$delimiter];
}
if (!ctype_lower($value)) {
$value = preg_replace('/\s+/u', '', $value);
$value = static::lower(preg_replace('/(.)(?=[A-Z])/u', '$1' . $delimiter, $value));
}
return static::$snakeCache[$key][$delimiter] = $value;
}
/**
* 下划线转驼峰(首字母小写)
*
* @param string $value
* @return string
*/
public static function camel(string $value): string
{
if (isset(static::$camelCache[$value])) {
return static::$camelCache[$value];
}
return static::$camelCache[$value] = lcfirst(static::studly($value));
}
/**
* 下划线转驼峰(首字母大写)
*
* @param string $value
* @return string
*/
public static function studly(string $value): string
{
$key = $value;
if (isset(static::$studlyCache[$key])) {
return static::$studlyCache[$key];
}
$value = ucwords(str_replace(['-', '_'], ' ', $value));
return static::$studlyCache[$key] = str_replace(' ', '', $value);
}
/**
* 转为首字母大写的标题格式
*
* @param string $value
* @return string
*/
public static function title(string $value): string
{
return mb_convert_case($value, MB_CASE_TITLE, 'UTF-8');
}
}
Run code
Cut to clipboard
项目修改使用:
if (!function_exists('parse_camel')) {
/**
* 下划线命名风格转换成驼峰命名风格
* @param $string
* @param bool $ucfirst 转换后首字母是否大写
* @return mixed|string
*/
function parse_camel($data, $ucfirst = false)
{
if (is_array($data)) {
$data_new = [];
foreach ($data as $k => $v) {
$k = preg_replace_callback('/_([a-zA-Z])/', function ($match) {
return strtoupper($match[1]);
}, $k);
$k = $ucfirst ? ucfirst($k) : $k;
$data_new[$k] = $v;
}
return $data_new;
}
$string = $data;
//替换过程 name_style => _s => s => S => nameStyle
$string = preg_replace_callback('/_([a-zA-Z])/', function ($match) {
return strtoupper($match[1]);
}, $string);
return $ucfirst ? ucfirst($string) : $string;
}
}
if (!function_exists('parse_underline')) {
/**
* 驼峰命名风格转换成下划线命名风格
* @param $string
* @return string
*/
function parse_underline($data)
{
if (is_array($data)) {
$data_new = [];
foreach ($data as $k => $v) {
$k = strtolower(trim(preg_replace("/[A-Z]/", "_\\0", $k), "_"));
$data_new[$k] = $v;
}
return $data_new;
}
$string = $data;
//替换过程 NameStyle => N | S => _N | _S => _Name_Style => Name_Style => name_style
$string = strtolower(trim(preg_replace("/[A-Z]/", "_\\0", $string), "_"));
return $string;
}
}
if (!function_exists('check_column_is_numeric')) {
//校验是否数字
//$uc 参数名转驼峰
function check_column_is_numeric($data, $checkColumn = [], $uc = true)
{
if (is_array($data)) {
foreach ($data as $k => $v) {
if ((!$checkColumn || in_array($k, $checkColumn)) && !is_numeric($v)) return (($uc ? parse_camel($k) : $k) . " 不是数字");
}
return false;
}
if ($uc) $data = parse_camel($data);
if (!is_numeric($data)) return ($data . " 不是数字");
return false;
}
}
Run code
Cut to clipboard
作者:彭槐
链接:https://www.jianshu.com/p/f231acb1ab82
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
链接:https://www.jianshu.com/p/f231acb1ab82
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
(支付宝)给作者钱财以资鼓励 (微信)→
暂无评论 »