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 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度