개발자의 끄적끄적

[php] php array shuffle 함수 본문

개발/php

[php] php array shuffle 함수

효벨 2019. 10. 3. 01:00
728x90
반응형

[php] php array shuffle 함수

 


	function custom_shuffle($my_array = array()) {
		$copy = array();
		while (count($my_array)) {
			// takes a rand array elements by its key
			$element = array_rand($my_array);
			// assign the array and its value to an another array
			$copy[$element] = $my_array[$element];
			//delete the element from source array
			unset($my_array[$element]);
		}
		return $copy;
	}

$new_aarray = custom_shuffle($old_array);

이런식으로 호출해서 사용하면 됩니다!!!

자주 사용되니 참고 하세요!!

반응형
Comments