3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PhpStormでシングル・ダブルクォーテーションを変換するPHP 1Up! プラグイン

Last updated at Posted at 2017-05-02

Convert a (single | doubule) quoted string to (single | doubule) quoted

他人のコードを自分の流派にしたいときなどに。

新しめのものならデフォルトでできるような記事も見たかも。 .(読んでいない

プラグイン

[PHP 1Up! :: JetBrains Plugin Repository]

axelcostaspena/php-1up: PHP 1Up! is a plugin for IntelliJ based IDEs which provides a growing collection of inspections, intentions and other utils for PHP development.

登録されているのでPhpStormからも
image.png

使う

String上で、WindowsならAlt + Enter

image.png

変数展開していても、無視してシングルにすることもできるし、

image.png

image.png

適切に分けることもできる。

ただ、

"a\nb"

`a
b`

になる。

自分は

'a' . "\n" . 'b'

をよく使うかな?
[PHP 1Up! :: JetBrains Plugin Repository]:https://plugins.jetbrains.com/plugin/7577-php-1up-

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?