记事本中多行php echo语句的语法突出显示++
我确信这个问题之前已经得到了解答,但我厌倦了搜索,并且不想在不知道自己要做什么的情况下开始下载编辑器和 IDE。
我刚刚开始编写php,我想知道一种方法让notepad++(或其他编辑器,IDE,如果需要的话)突出显示包含html的多行echo语句的语法。我想突出显示 echo 内部的 html。
I'm sure this has been answered before, but i'm tired of searching and don't want to start downloading editors and IDEs without knowing what i'm getting into.
I am just getting started writing php, and i would like to know a way to have notepad++ (or another editor, IDE if necessary) highlight the syntax of a multiline echo statement containing html. I would like to highlight the html inside of the echo.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Norepad++、NetBeans 和其他我熟悉的 IDE 中,如果编辑器将您的文件识别为 PHP 文件,则无法使编辑器在 echo 中突出显示 html。但是您可以在 echo 语句之外打印 html,以便突出显示 html,并仅使用 echo 来输出 html 内的 php 变量。例如:
In Norepad++, NetBeans and other IDEs that I am familiar with there is no way to make the editor highlight html inside echo if your file is recognized by the editor as a PHP file. But you can print html outside of echo statements instead so that html is highlited and use echo only to output php variables inside html. For example: