只显示符号之间的所有内容

发布于 2024-11-05 19:28:13 字数 309 浏览 1 评论 0原文

我希望在符号之前和之后加强一切。

这是我的文字。

[sourcecode language='']%1982%<?php echo 'hello world'; ?>%1982%[/sourcecode]

我需要的结果是

<?php echo 'hello world'; ?>

所以它会删除符号 %1982% 之前和之后的所有字符

请帮助了解如何执行此操作???

谢谢

I am looking to striong everything berfore and after symbols.

So here would be my text.

[sourcecode language='']%1982%<?php echo 'hello world'; ?>%1982%[/sourcecode]

And the result i need is

<?php echo 'hello world'; ?>

So it strips out all characters before and after the symbol %1982%

And help please on how to do this????

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

微暖i 2024-11-12 19:28:13

使用以下内容来怀疑它

<?php 
$update = get_the_content();                                        
$arr = explode('%1982%',$update);
//print_r($arr);                                
echo $arr[1];
?>

Sussed it using the following

<?php 
$update = get_the_content();                                        
$arr = explode('%1982%',$update);
//print_r($arr);                                
echo $arr[1];
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文