欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

文章任意位置随机加入特定字符串php代码

程序员文章站 2022-03-29 22:45:56
...
文章任意位置随机加入特定字符串php代码,使用教程: http://www.tongqiong.com/read.php?tid-102.html
  1. /*假设你的文字变量名为$str,需要插入的代码变量名为$ad[1], $ad[2], .....
  2. 作者:http://www.tongqiong.com
  3. */
  4. $ad[1]="同穷论坛";
  5. $ad[2]="哪里购物";
  6. $ad[3]="台州妈妈论坛";
  7. $ad[4]="眼镜论坛";
  8. $textlength = strlen($str);
  9. $curpos = ($textlength >= 100) ? rand(30, 100) : ($textlength > 30 ? rand(30, $textlength) :$textlength);
  10. $curadid = 1;
  11. while($curpos $str = substr($str, 0, $curpos).$ad[$curadid].substr($str, $curpos, $textlength);
  12. $curpos += rand(20, 50) + strlen($ad[$curadid]);
  13. if($ad[$curadid + 1]) $curadid += 1;
  14. }
  15. /*这其中你有个没有说的地方,如果文本不够30个字符怎么办?不可能插入30 - 100之间吧。所以我加入个判断,不够30时加入末尾。
  16. 作者:http://www.tongqiong.com
  17. 另外,文章可能更长,比如10000个字符,却只有2段代码,我这个写法会自动插入代码2,如果已经没有代码3了。
  18. */
  19. ?>
复制代码