当前位置:Gxlcms > PHP教程 > 文章任意位置随机加入特定字符串php代码

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

时间:2021-07-01 10:21:17 帮助过:10人阅读

文章任意位置随机加入特定字符串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 < $textlength){
  12. $str = substr($str, 0, $curpos).$ad[$curadid].substr($str, $curpos, $textlength);
  13. $curpos += rand(20, 50) + strlen($ad[$curadid]);
  14. if($ad[$curadid + 1]) $curadid += 1;
  15. }
  16. /*这其中你有个没有说的地方,如果文本不够30个字符怎么办?不可能插入30 - 100之间吧。所以我加入个判断,不够30时加入末尾。
  17. 作者:http://www.tongqiong.com
  18. 另外,文章可能更长,比如10000个字符,却只有2段代码,我这个写法会自动插入代码2,如果已经没有代码3了。
  19. */
  20. ?>

人气教程排行