如何使用 PHP 突出显示多个代码块 [code][/code]?

发布于 2024-12-06 01:03:40 字数 499 浏览 1 评论 0原文

您好,我有一个动态文本,我想像所有论坛一样添加代码,如下所示: [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 技术交流群。

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

发布评论

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

评论(2

萤火眠眠 2024-12-13 01:03:40

此外,您还可以使用这个 PHP 语法突出显示库。 格什

In addition, you can use this PHP syntax-highlighting library. Geshi

貪欢 2024-12-13 01:03:40

简单的案例场景(没有嵌套,其他奇怪的格式):

$text = preg_replace('#\[code\](.*?)\[\/code\]#s', '<div class="whatever">$1</div>', $text);

Simple case scenario (no nesting, other weird formatting):

$text = preg_replace('#\[code\](.*?)\[\/code\]#s', '<div class="whatever">$1</div>', $text);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文