Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Stock ipo
- MYSQL
- 공모주
- 7월 공모주 청약 일정
- 주식
- html
- php
- Stock
- 6월 공모주 청약 일정
- 주식 청약 일정
- css
- 리눅스
- linux
- 제이쿼리
- 자바
- Oracle
- java
- jquery
- JavaScript
- IPO
- Eclipse
- 공모주 청약
- 공모주 청약 일정
- 코드이그나이터
- codeigniter
- 주식 청약
- 오라클
- 자바스크립트
- SQL
- 맥
Archives
- Today
- Total
목록php 배열 섞기 (2)
개발자의 끄적끄적
[php] php shuffle 함수 사용법 및 예제
[php] php shuffle 함수 사용법 및 예제 php 에서 배열을 다루다 보면 배열 안의 값들을 랜덤으로 섞어야 하는 경우가 있습니다. 그럴때는 아래와 같이 내장함수인 shuffle 를 이용하시면 됩니다! 예를들어 아래와 같이 1~5의 값이 들어있는 배열이 있다고 가정하고. $arr = array("1","2","3","4","5"); 위 배열을 섞고 싶으면 아래와 같이 shuffle 를 사용하시면 됩니다! shuffle($arr); 결과는 아래처럼 출력해보시면 배열의 값이 섞인것을 확인할 수 있습니다! print_r($arr); 참고들 하세요!
개발/php
2022. 7. 6. 01:00
[php] php array shuffle 함수
[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_shuff..
개발/php
2019. 10. 3. 01:00