Zend Studio 格式化程序使用错误的格式

发布于 2024-10-27 03:21:35 字数 855 浏览 3 评论 0原文

我正在使用ibuildings ZF。当我按 Ctr+Shift+F 时 代码是这样格式化的

$adapter = $this->getAuthAdapter(
$form->getValues());
$auth = Zend_Auth::getInstance();
$result = $auth->authenticate($adapter);
if (! $result->isValid()) {
    $form->setDescription(
    'Invalid credentials provided');
    $this->view->form = $form;
    return $this->render('index');
}

,但我想以这种方式格式化,

$adapter = $this->getAuthAdapter($form->getValues());
$auth = Zend_Auth::getInstance();
$result = $auth->authenticate($adapter);
if (! $result->isValid()) {
    $form->setDescription('Invalid input');
    $this->view->form = $form;
    return $this->render('index');
}

如何配置?

I am using ibuildings ZF. When I press Ctr+Shift+F
the code is formated this way

$adapter = $this->getAuthAdapter(
$form->getValues());
$auth = Zend_Auth::getInstance();
$result = $auth->authenticate($adapter);
if (! $result->isValid()) {
    $form->setDescription(
    'Invalid credentials provided');
    $this->view->form = $form;
    return $this->render('index');
}

but I want to be formatted that way

$adapter = $this->getAuthAdapter($form->getValues());
$auth = Zend_Auth::getInstance();
$result = $auth->authenticate($adapter);
if (! $result->isValid()) {
    $form->setDescription('Invalid input');
    $this->view->form = $form;
    return $this->render('index');
}

how to configure this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

任性一次 2024-11-03 03:21:35

格式化程序可以在窗口 > 中配置。首选项> PHP>代码风格>格式化程序>编辑...>>换行。

所有设置均选择“不换行”。

The formatter can be configured in Window > Preferences > PHP > Code Style > Formatter > Edit... > Line Wrapping .

All the Settings are choose 'Do not wrap'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文