gpt4 book ai didi

php - 方法参数缩进的 Netbeans 自动格式问题

转载 作者:可可西里 更新时间:2023-10-31 22:15:50 27 4
gpt4 key购买 nike

我想弄清楚我是否遗漏(或误用)了配置设置。

在这段代码上使用自动格式:

<?php
class foo {

public function test() {
$x = $this->foobar(
1,
2
);
}

}

产生:

<?php

class foo {

public function test() {
$x = $this->foobar(
1,
2
);
}

}

我希望 netbeans 停止这样做,因为除此之外,自动格式化工作得很好。

只有在函数调用行上有赋值时才会发生。

最佳答案

您将获得 2 个连续缩进,一个用于赋值,一个用于参数列表。如果在赋值和 $this->foobar 之间插入一个中断,它会变得更加明显:

class foo {
public function test() {
$x =
$this->foobar(
1,
2
);
}
}

所以,这就是它的“原因”。不幸的是,NB 公开了很少的用于格式化 php.ini 的控件。似乎没有办法改变这种行为。

我建议 opening a bug report并关注 Netbeans PHP blog

关于php - 方法参数缩进的 Netbeans 自动格式问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5144973/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com