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
- 제이쿼리
- 리눅스
- 자바
- Oracle
- 코드이그나이터
- IPO
- 6월 공모주 청약 일정
- 오라클
- linux
- 주식
- 공모주
- SQL
- php
- JavaScript
- 공모주 청약 일정
- html
- codeigniter
- 자바스크립트
- 공모주 청약
- css
- 주식 청약
- Stock ipo
- java
- 주식 청약 일정
- Eclipse
- jquery
- MYSQL
- 7월 공모주 청약 일정
- 맥
Archives
- Today
- Total
목록PHP array (9)
개발자의 끄적끄적
[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