PhpStorm中的格式代码CTRL + ALT + I与Eclipse中的CTRL + SHIFT + F不同

时间:2014-12-29 04:10:48

标签: eclipse format phpstorm

我是PhpStorm的初学者。我想在像Eclipse这样的PhpStorm中格式化代码。我曾使用Ctrl + Alt + I来格式化代码,但它似乎不是我想要的(在Eclipse中看起来像CTRL + SHIFT + F)。我在这里搜索了许多答案,但没有成功。这是格式化之前的代码:

public function view($id = null) {
    if (!$id) {
        throw new NotFoundException(__(’Invalid post’));
}
    $post = $this->Post->findById($id);
    if (!$post) {
            throw new NotFoundException(__(’Invalid post’));
}
$this->set(’post’, $post);
}    

这是我的代码,格式为Ctrl + Alt + I

public function view($id = null) {
    if (!$id) {
        throw new NotFoundException(__(’Invalid post’));
}
    $post = $this->Post->findById($id);
    if (!$post) {
        throw new NotFoundException(__(’Invalid post’));
}
    $this->set(’post’, $post);
}

我希望它看起来像:

public function view($id = null) {
    if (!$id) {
        throw new NotFoundException(__(’Invalid post’));
    }
    $post = $this->Post->findById($id);
    if (!$post) {
        throw new NotFoundException(__(’Invalid post’));
    }
    $this->set(’post’, $post);
}

任何帮助将不胜感激,谢谢。

0 个答案:

没有答案