我是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);
}
任何帮助将不胜感激,谢谢。