用于将snake_case转换为camelCase的代码嗅探器

问题描述 投票:0回答:1

我需要一个代码嗅探器来将我的所有PHP文件中的所有变量snake_case转换为camelCase

我不需要在 php 中对字符串执行此操作的函数,我想将 PHP 文件中的变量转换为驼峰命名法。

我提前感谢你。

coding-style camelcasing phpcodesniffer snakecasing
1个回答
1
投票

我找到了一种方法。 我集成了 cakePHP 的代码(有扩展名为 ctp 的文件以及通过 set 函数传递给视图的变量)。

将以下代码另存为 tocamelcase.php

php tocamelcase.php the/path/of/your/app

文件内容:

<?php
function snakeToCamel($val) {  
    preg_match('#^_*#', $val, $underscores);
    $underscores = current($underscores);
    $camel = str_replace('||||', '', ucwords(str_replace('_', '||||', $val), '||||'));  
    $camel = strtolower(substr($camel, 0, 1)).substr($camel, 1);

    return $underscores.$camel;  
}  

function convert($str) {
    global $j;
    $name = '/(\$[a-zA-Z0-9]+_[a-zA-Z0-9_]+)|'.
            '(->[a-zA-Z0-9]+_[a-zA-Z0-9_]+)|'.
            '(::[a-zA-Z0-9]+_[a-zA-Z0-9_]+)|'.
            '(\sfunction\s+[a-zA-Z0-9]+_[a-zA-Z0-9_]+)|'.
            '(\$this->set\(\'[a-zA-Z0-9]+_[a-zA-Z0-9_]+\'\,)|'.
            '(\$this->set\(\"[a-zA-Z0-9]+_[a-zA-Z0-9_]+\"\,)'.
            '/i';
    $str = preg_replace_callback($name, function($matches){
        return snakeToCamel($matches[0]);   
    },$str);
    return $str;
}

$path = $argv[1];
$Iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path));
$i=1;
foreach($Iterator as $file){
    if(substr($file,-4) !== '.php' && substr($file,-4) !== '.ctp')
        continue;
    echo($i.": ".$file."\n");
    $i++;
    $out = convert(file_get_contents($file));
    file_put_contents($file, $out);
}
© www.soinside.com 2019 - 2024. All rights reserved.