Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要知道如何让 PhpStorm 区分单引号字符串和双引号字符串的颜色。
就像假设我希望双引号字符串为绿色,单引号字符串为红色,如下所示:
$stringgreen = "This String is Green Color"; $stringred = 'This String is Red Color';