dongying7667 2016-04-06 06:11
浏览 14
已采纳

php str_replace static到动态id

I have the following code:

<strong>this is test1 </strong>
<strong>this is test2 </strong>
<strong>this is test3 </strong>
<strong>this is test4 </strong>

and I need to change that to:

<div id="test1"><strong>this is test1 </strong></div>
<div id="test2"><strong>this is test2 </strong></div>
<div id="test3"><strong>this is test3 </strong></div>

with str_replace or something... Any ideas? As the text is coming from CMS. I need to have ids for this text to move to the subsection when the menu item is clicked.

  • 写回答

2条回答 默认 最新

  • dongmu1951 2016-04-06 06:16
    关注

    Try:

    for ($i = 1; $i <= 4; $i++) {
    
    $test$i = str_replace('<strong>','<div id="test'.$i.'"><strong>',
        '<strong>this is test'.$i.'</strong>');
    
    $test$i = str_replace('</strong>','</strong></div>',
        $test$i);
    
    }
    

    You'll now have $test1, $test2, $test3 and $test4.

    Edit: Note that PHP is serverside and you'll have to reload the page to execute PHP code.

    EDIT: New code:

    $text = '<strong>this is a test</strong><strong>this is a test</strong>';
    
    function str_replacef($from, $to, $subject)
    {
        $from = '/'.preg_quote($from, '/').'/';
    
        return preg_replace($from, $to, $subject, 1);
    }
    
    for ($i = 1; $i <= 2; $i++) {
    $text = str_replacef('<strong>','<div id="'.$i.'"><strong2>',$text);
    $text = str_replacef('</strong>','</strong2></div>',$text);
    }
    
    $text = str_replace('<strong2>','<strong>',$text);
    $text = str_replace('</strong2>','</strong>',$text);
    
    echo $text;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化