php 字符串随机分割成不同长度的数组示例

内容摘要
这篇文章主要为大家详细介绍了php 字符串随机分割成不同长度的数组示例,具有一定的参考价值,可以用来参考一下。

php对字符串在指定的长度范围内进行随机分割,把分割后的结果
文章正文

这篇文章主要为大家详细介绍了php 字符串随机分割成不同长度的数组示例,具有一定的参考价值,可以用来参考一下。

php对字符串在指定的长度范围内进行随机分割,把分割后的结果存在数组里面,php将字符串随机分割成不同长度的数组,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:

/**
 * 对字符串在指定的长度范围内进行随机分割
 *
 * @param 
 * @arrange (www.idcnote.com)
 **/
function RandomSplit($min, $max, $str){
    $a = array();
 
    while ($str != ''){
        $p = rand($min, $max);
        $p = ($p > strlen($str)) ? strlen($str) : $p;
 
        $buffer = substr($str, 0, $p);
        $str = substr($str, $p, strlen($str)-$p);
 
        $a[] = $buffer;
    }
    return $a;
}
//范例:
/*
** Example:
*/
 
$test_string = 'This is a example to test the RandomSplit function.';
 
print_r(RandomSplit(1, 7, $test_string));
 
/*
Outputs something like this
(Array items are 1 to 7 characters long): 
 
Array
(
    [0] => This
    [1] =>  is
    [2] =>  a exam
    [3] => ple to
    [4] =>  test t
    [5] => he
    [6] =>  
    [7] => ran
    [8] => d_spl
    [9] => it f
    [10] => un
    [11] => ction.
)
*/


/***   来自php教程(www.idcnote.com)   ***/

注:关于php 字符串随机分割成不同长度的数组示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!