dqfr90979 2018-09-03 09:08
浏览 60

PHP是否在for循环中优化多个strlen调用?

I am trying to make a PHP function that replaces all occurrences between two strings for an another given string.

I am almost sure I have accomplished what I was looking for, however while I was programming I had two versions of it. I would like you guys explain me which one is better.

Version 1:

$html = "{tag param1|param2}<adfasdfsdf>adsfasdf<adsfasdfsd>{tag param1} {tag param2} sdfsdfadsfasdf";
$needle = array('{tag ', '}');
$placeholder = 'TEST';
$lengths = array(strlen($needle[0]), strlen($needle[1]), strlen($placeholder));
$offset = 0;
while(($startpos = strpos($html, $needle[0], $offset)) !== false){
    $endpos = strpos($html, $needle[1], $startpos + $lengths[0]);
    if($endpos === false) break;
    $html = substr_replace($html, $placeholder, $startpos, $endpos - $startpos + 1);
    $offset = $startpos + $lengths[2];
}
echo $html;

Version 2:

$html = "{tag param1|param2}<adfasdfsdf>adsfasdf<adsfasdfsd>{tag param1} {tag param2} sdfsdfadsfasdf";
$needle = array('{tag ', '}');
$placeholder = 'TEST';
$offset = 0;
while(($startpos = strpos($html, $needle[0], $offset)) !== false){
    $endpos = strpos($html, $needle[1], $startpos + strlen($needle[0]));
    if($endpos === false) break;
    $html = substr_replace($html, $placeholder, $startpos, $endpos - $startpos + 1);
    $offset = $startpos + strlen($placeholder);
}
echo $html;

This code search for all {tag ...........} occurrences and replace them for TEST.

I know at this point this might be micro optimization, however I would like to learn.

Any error you see or suggestion is welcome.

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 AT89C51控制8位八段数码管显示时钟。
    • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
    • ¥15 下图接收小电路,谁知道原理
    • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
    • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
    • ¥15 手机接入宽带网线,如何释放宽带全部速度
    • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
    • ¥15 ETLCloud 处理json多层级问题
    • ¥15 matlab中使用gurobi时报错
    • ¥15 这个主板怎么能扩出一两个sata口