Heim  >  Artikel  >  Backend-Entwicklung  >  随机打乱数组、字符串PHP函数运用测试

随机打乱数组、字符串PHP函数运用测试

WBOY
WBOYOriginal
2016-06-13 13:18:46874Durchsuche

随机打乱数组、字符串PHP函数应用测试

<?php /**
 * 随机打乱数组、字符串PHP函数应用测试
 * 
 * @author flyer0126
 * @date 2011-12-29
 * 
 */

//随机打乱数组
$arr = array('1', '2', '3', '4', '5', '6');

print_r($arr);
//Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 ) 
shuffle($arr);

print_r($arr);
//Array ( [0] => 3 [1] => 4 [2] => 1 [3] => 2 [4] => 6 [5] => 5 ) 


//随机打乱字符串
$str = 'abcdef';

echo $str;
//abcdef

$stred = str_shuffle($str);

echo $stred;
//dbafec

?>
?
Stellungnahme:
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