php [php:翻译骆驼/蛇案]キャメルケース/スネークケース変换する的な。#php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [php:翻译骆驼/蛇案]キャメルケース/スネークケース変换する的な。#php相关的知识,希望对你有一定的参考价值。

// camel to snake
$before = "fooBar";
$agter = strtolower(preg_replace("/([A-Z])/u", "_$0", $before));
echo $after; //foo_bar

// upper camel to snake
$before = "FooBar";
$after = strtolower(preg_replace("/([A-Z])/u", "_$0", $before));
$after = substr( $after, 1 );
echo $after; //foo_bar

// snake to camel
$before = "foo_bar";
$parts = explode("_", $str);
foreach ($parts as $part) {
  if (!isset( $after )) {
    $after = $part;
  } else {
    $after .= ucfirst( $part );
  }
}
echo $after; //fooBar;

以上是关于php [php:翻译骆驼/蛇案]キャメルケース/スネークケース変换する的な。#php的主要内容,如果未能解决你的问题,请参考以下文章

html Vue.jsでコンポーネントのイベント名をキャメルケースにすると反応しない

python 指定フレームでのスペクトルとメルケプストラムを描画

python メルケプストラムの抽出

python メルケプストラムの时系列を描画

php WordPress的のPを置换しているコアソース

php 智能自定义字段を使って画像スライダーを作る际の表示部分のコード