如何使用 PHP 突出显示多个代码块 [code][/code]?
您好,我有一个动态文本,我想像所有论坛一样添加代码,如下所示: [code]我的代码在这里...[/code]
有没有一种简单的方法可以让 PHP 中的函数来完成这些事情?例如,如果我在文本上写下:
Hello world example with PHP [code]echo "hello "world";[/code] 和一个addition example with PHP [code] echo 5+5; //结果将是 10[ /code] 等...
将出现:
Hello world example with PHP
<?php echo "hello "world"; ?>
和 anaddition example with PHP
<?php echo 5+5; //The result will be 10 ?>
etc....
Hello I have a dynamic text and I want to add code like all the forums like this:
[code]My code here...[/code]
Is there an easy way to have a function in PHP to do this stuff?? For example if I write on my text:
Hello world example with PHP [code]echo "hello "world";[/code] and an addition example with PHP [code] echo 5+5; //The result will be 10[/code] etc...
Will apear:
Hello world example with PHP
<?php echo "hello "world"; ?>
and an addition example with PHP
<?php echo 5+5; //The result will be 10 ?>
etc....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此外,您还可以使用这个 PHP 语法突出显示库。 格什
In addition, you can use this PHP syntax-highlighting library. Geshi
简单的案例场景(没有嵌套,其他奇怪的格式):
Simple case scenario (no nesting, other weird formatting):