文章任意位置随机加入特定字符串php代码
Freigeben: 2016-07-25 09:06:09
Original
1357 Leute haben es durchsucht
文章任意位置随机加入特定字符串php代码,使用教程:
http://www.tongqiong.com/read.php?tid-102.html
- /*假设你的文字变量名为$str,需要插入的代码变量名为$ad[1], $ad[2], .....
- 作者:http://www.tongqiong.com
- */
- $ad[1]="同穷论坛";
- $ad[2]="哪里购物";
- $ad[3]="台州妈妈论坛";
- $ad[4]="眼镜论坛";
- $textlength = strlen($str);
- $curpos = ($textlength >= 100) ? rand(30, 100) : ($textlength > 30 ? rand(30, $textlength) :$textlength);
- $curadid = 1;
- while($curpos $str = substr($str, 0, $curpos).$ad[$curadid].substr($str, $curpos, $textlength);
- $curpos += rand(20, 50) + strlen($ad[$curadid]);
- if($ad[$curadid + 1]) $curadid += 1;
- }
-
- /*这其中你有个没有说的地方,如果文本不够30个字符怎么办?不可能插入30 - 100之间吧。所以我加入个判断,不够30时加入末尾。
- 作者:http://www.tongqiong.com
-
- 另外,文章可能更长,比如10000个字符,却只有2段代码,我这个写法会自动插入代码2,如果已经没有代码3了。
- */
- ?>
复制代码
|
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31