5

我正在寻找一种方法(正则表达式、片段、插件等)用 sublimeText 的新 php 语法转换旧数组。

// Old synthax
$var = array(
   'foo' => 'bar' 
);

// New synthax
$var = [
   'foo' => 'bar'
];

有人有想法吗?

4

3 回答 3

5

我找到了一个完美完成这项工作的脚本!

https://github.com/thomasbachem/php-short-array-syntax-converter

于 2014-06-03T21:10:18.207 回答
3

我发现使用 php 代码嗅探器也可以做到这一点:https ://github.com/squizlabs/PHP_CodeSniffer

phpcbf src/ --standard=Generic --sniffs=Generic.Arrays.DisallowLongArraySyntax

在此示例中,您必须将 src/ 替换为包含脚本的文件夹。或者,您可以提供文件名。

于 2018-08-27T10:36:19.123 回答
0

也许有点晚了,但我创造了自己的。也许不漂亮,但它确实完成了我想要的工作。如果您不喜欢制表符,请将缩进功能中的 \t 更改为 2 或 4 个空格。

    function loopArray(array $array, $loopcount = 0) {

        $returnString = ($loopcount == 0) ? "[\n" : "";

        $tabKey = indent($loopcount + 2);
        $tabValue = indent($loopcount + 3);

        $lastKey = array_key_last($array);

        foreach ($array as $key => $value) {

            $totalChildren = count($array[$key]);

            $returnString .= $tabKey . '"' . $key . '" => ';

            if ($totalChildren == 0) $returnString .= '[]';
            if ($totalChildren > 0 && is_array($array[$key])) $returnString .= '[' . "\n";

            if (is_array($value)) {

                $returnString .= loopArray($value, $loopcount + 1);
            } else {

                if ($totalChildren == 1) $returnString .=  '"' . $value . '"';
                if ($totalChildren > 1)  $returnString .=  $tabValue . '"' . $value . '"'  . ",\n";
            }

            $returnString .= ($lastKey == $key) ? "\n" . indent($loopcount+1) . "]" : ",\n";
        }

        return $returnString;
    }

    function indent($amount) {

        return str_repeat("\t", $amount);
    }

/** use function below only prior to php 7.3 */

    function array_key_last(array $array) {

        $key = NULL;

        if ( is_array( $array ) ) {

            end( $array );
            $key = key( $array );
        }

        return $key;
    }
于 2019-01-14T06:28:11.543 回答