doubaoguo7469 2011-01-18 14:39
浏览 34
已采纳

使用highlight_string打印php代码

I am trying to show my code with highlight_string. All of my variables are being stripped out of the printed code. What am I doing wrong? An example of what is happening ...

<?php highlight_string("
    <?
        $a=3;
        $b=4;
        if ($a < $b){
        echo 'a is less than b';
        }
    ?>"); 
?>

The output looks like this

    <?
        =3;
        =4;
        if ( < ){
        echo 'a is less than b';
        }
    ?>
  • 写回答

5条回答 默认 最新

  • drpmazn9021 2011-01-18 14:41
    关注

    Replace the double quotes (") with single quotes (') PHP tries to fill up variables printed within double quotes.

    <?php highlight_string('
        <?
            $a=3;
            $b=4;
            if ($a < $b){
            echo \'a is less than b\';
            }
        ?>'); 
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 onlyoffice编辑完后立即下载,下载的不是最新编辑的文档
  • ¥15 求caverdock使用教程
  • ¥15 Coze智能助手搭建过程中的问题请教
  • ¥15 12864只亮屏 不显示汉字
  • ¥20 三极管1000倍放大电路
  • ¥15 vscode报错如何解决
  • ¥15 前端vue CryptoJS Aes CBC加密后端java解密
  • ¥15 python随机森林对两个excel表格读取,shap报错
  • ¥15 基于STM32心率血氧监测(OLED显示)相关代码运行成功后烧录成功OLED显示屏不显示的原因是什么
  • ¥100 X轴为分离变量(因子变量),如何控制X轴每个分类变量的长度。