update : 2015.11.03
php.shukuma.com검색:
|
ArrayObject::asort(PHP 5 >= 5.2.0) ArrayObject::asort — Sort the entries by value 설명
public void ArrayObject::asort
( void
)
Sorts the entries such that the keys maintain their correlation with the entries they are associated with. This is used mainly when sorting associative arrays where the actual element order is significant. 인수이 함수는 인수가 없습니다. 반환값값을 반환하지 않습니다. 예제
Example #1 ArrayObject::asort() example
<?php 위 예제의 출력: c = apple b = banana d = lemon a = orange The fruits have been sorted in alphabetical order, and the key associated with each entry has been maintained. 참고
|