matthewbaggett / twig-extension-transform
添加了将一种大小写风格转换成另一种风格的功能。
v1.3
2021-05-16 03:52 UTC
Requires
- php: ^7.4 || ^8.0
- mattketmo/camel: ^1.1.0
- twig/twig: ^3.0
Requires (Dev)
- kint-php/kint: ^2.1
- phpunit/phpunit: ^9
- squizlabs/php_codesniffer: ^3.0
This package is auto-updated.
Last update: 2024-09-16 10:58:25 UTC
README
添加了将一种大小写风格转换成另一种风格的功能。
示例
{{ input|transform_camel_to_snake }}
将输出 this_is_an_example
,输入为 thisIsAnExample
###支持的转换器
以下任一组合
- 驼峰
thisIsAnExample
- 蛇形
this_is_an_example
- 大写蛇形
THIS_IS_AN_EXAMPLE
- 脊柱形
this-is-an-example
- studly caps
ThisIsAnExample
格式为 'transform-from-to-target'
致谢
在Matthieu Moquet编写的优秀Camel包的基础上编写