记事本中多行php echo语句的语法突出显示++

发布于 2024-12-10 01:36:09 字数 164 浏览 0 评论 0原文

我确信这个问题之前已经得到了解答,但我厌倦了搜索,并且不想在不知道自己要做什么的情况下开始下载编辑器和 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你不是我要的菜∠ 2024-12-17 01:36:10

在 Norepad++、NetBeans 和其他我熟悉的 IDE 中,如果编辑器将您的文件识别为 PHP 文件,则无法使编辑器在 echo 中突出显示 html。但是您可以在 echo 语句之外打印 html,以便突出显示 html,并仅使用 echo 来输出 html 内的 php 变量。例如:

<?php

 $name = 'John';
?>

<b>My name is <?php echo $name;?></b>

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:

<?php

 $name = 'John';
?>

<b>My name is <?php echo $name;?></b>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文