gone.io/twig-extension-transform

添加从一种大小写风格转换为另一种的程序化能力。

v1.3 2021-05-16 03:52 UTC

This package is auto-updated.

Last update: 2024-09-24 06:46:46 UTC


README

Build Status

添加从一种大小写风格转换为另一种的程序化能力。

示例

{{ input|transform_camel_to_snake }} 对于输入 thisIsAnExample 将输出 this_is_an_example

###支持的转换器

以下任一组合

  • 驼峰式 thisIsAnExample
  • 蛇形 this_is_an_example
  • 大写蛇形 THIS_IS_AN_EXAMPLE
  • 脊柱形 this-is-an-example
  • 大写字母 ThisIsAnExample

使用格式 'transform-from-to-target'

致谢

基于优秀的 Camel 包编写,该包由 Matthieu Moquet 编写