当前位置:首页 > PHP教程 > php数组 > 列表

php将字符串随机分割成不同长度数组的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-27 14:23:40 浏览: 评论:0 

这篇文章主要介绍了php将字符串随机分割成不同长度数组的方法,涉及随机数及字符串操作的相关技巧,需要的朋友可以参考下。

本文实例讲述了php将字符串随机分割成不同长度数组的方法,分享给大家供大家参考,具体分析如下:

这里使用php对字符串在指定的长度范围内进行随机分割,把分割后的结果存在数组里面:

  1. function RandomSplit($min$max$str){ 
  2.   $a = array(); 
  3.   while ($str != ''){ 
  4.     $p = rand($min$max); 
  5.     $p = ($p > strlen($str)) ? strlen($str) : $p
  6.     $buffer = substr($str, 0, $p); 
  7.     $str = substr($str$pstrlen($str)-$p); 
  8.     $a[] = $buffer
  9.   } 
  10.   return $a
  11. //范例: 
  12. /* 
  13. ** Example: 
  14. */ 
  15. $test_string = 'This is a example to test the RandomSplit function.'
  16. print_r(RandomSplit(1, 7, $test_string)); 
  17. /* 
  18. Outputs something like this 
  19. (Array items are 1 to 7 characters long):  
  20. Array 
  21. ( 
  22.   [0] => This 
  23.   [1] => is 
  24.   [2] => a exam 
  25.   [3] => ple to 
  26.   [4] => test t 
  27.   [5] => he 
  28.   [6] =>  
  29.   [7] => ran 
  30.   [8] => d_spl 
  31.   [9] => it f 
  32.   [10] => un 
  33.   [11] => ction. 
  34. ) 
  35. */

Tags: php字符串随机 php数组

分享到: