PHP编程:php将字符串随机分割成不同长度数组的方法
发布时间:2020-12-13 02:39:03 所属栏目:PHP教程 来源:网络整理
导读:《php将字符串随机分割成不同长度数组的方法》要点: 本文介绍了php将字符串随机分割成不同长度数组的方法,希望对您有用。如果有疑问,可以联系我们。 PHP学习 本篇章节讲解php将字符串随机分割成不同长度数组的办法.供大家参考研究.具体分析如下:
《php将字符串随机分割成不同长度数组的方法》要点: PHP学习本篇章节讲解php将字符串随机分割成不同长度数组的办法.分享给大家供大家参考.具体分析如下: 这里使用php对字符串在指定的长度范围内进行随机分割,把分割后的结果存在数组里面 function RandomSplit($min,$max,$str){ $a = array(); while ($str != ''){ $p = rand($min,$max); $p = ($p > strlen($str)) ? strlen($str) : $p; $buffer = substr($str,$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程序设计有所赞助. 欢迎参与《php将字符串随机分割成不同长度数组的方法》讨论,分享您的想法,编程之家 52php.cn为您提供专业教程。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |