php 数组排序问题

WBOY
Freigeben: 2016-06-06 20:46:09
Original
1166 Leute haben es durchsucht

<code>$arr = array(
        'id' => 1, 'pid' => 0, 'title' => '1',
        'id' => 2, 'pid' => 0, 'title' => '2',
        'id' => 3, 'pid' => 0, 'title' => '3',
        'id' => 4, 'pid' => 0, 'title' => '4',
        'id' => 5, 'pid' => 1, 'title' => '1-5',
        'id' => 6, 'pid' => 5, 'title' => '1-5-6',
        'id' => 7, 'pid' => 1, 'title' => '1-7',
        'id' => 8, 'pid' => 2, 'title' => '2-8',
    );
</code>
Nach dem Login kopieren
Nach dem Login kopieren

排序完效果

<code>$arr = array(
        'id' => 1, 'pid' => 0, 'title' => '1',
        'id' => 5, 'pid' => 1, 'title' => '1-5',
        'id' => 6, 'pid' => 5, 'title' => '1-5-6',
        'id' => 7, 'pid' => 1, 'title' => '1-7',
        'id' => 2, 'pid' => 0, 'title' => '2',
        'id' => 8, 'pid' => 2, 'title' => '2-8',
        'id' => 3, 'pid' => 0, 'title' => '3',
        'id' => 4, 'pid' => 0, 'title' => '4',
    );
</code>
Nach dem Login kopieren
Nach dem Login kopieren

就是父节点后面紧跟子节点

回复内容:

<code>$arr = array(
        'id' => 1, 'pid' => 0, 'title' => '1',
        'id' => 2, 'pid' => 0, 'title' => '2',
        'id' => 3, 'pid' => 0, 'title' => '3',
        'id' => 4, 'pid' => 0, 'title' => '4',
        'id' => 5, 'pid' => 1, 'title' => '1-5',
        'id' => 6, 'pid' => 5, 'title' => '1-5-6',
        'id' => 7, 'pid' => 1, 'title' => '1-7',
        'id' => 8, 'pid' => 2, 'title' => '2-8',
    );
</code>
Nach dem Login kopieren
Nach dem Login kopieren

排序完效果

<code>$arr = array(
        'id' => 1, 'pid' => 0, 'title' => '1',
        'id' => 5, 'pid' => 1, 'title' => '1-5',
        'id' => 6, 'pid' => 5, 'title' => '1-5-6',
        'id' => 7, 'pid' => 1, 'title' => '1-7',
        'id' => 2, 'pid' => 0, 'title' => '2',
        'id' => 8, 'pid' => 2, 'title' => '2-8',
        'id' => 3, 'pid' => 0, 'title' => '3',
        'id' => 4, 'pid' => 0, 'title' => '4',
    );
</code>
Nach dem Login kopieren
Nach dem Login kopieren

就是父节点后面紧跟子节点

<code><?php $arr = array(
        array('id' => 1, 'pid' => 0, 'title' => '1'),
        array('id' => 2, 'pid' => 0, 'title' => '2'),
        array('id' => 3, 'pid' => 0, 'title' => '3'),
        array('id' => 4, 'pid' => 0, 'title' => '4'),
        array('id' => 5, 'pid' => 1, 'title' => '1-5'),
        array('id' => 6, 'pid' => 5, 'title' => '1-5-6'),
        array('id' => 7, 'pid' => 1, 'title' => '1-7'),
        array('id' => 8, 'pid' => 2, 'title' => '2-8'),
    );

function userSort($a, $b) {
    $a = $a['title'];
    $b = $b['title'];
    if($a == $b) return 0;
    return $a>$b ? 1 : -1;
}
usort($arr, 'userSort');

echo "

";
print_r($arr);
</code>
Nach dem Login kopieren
Verwandte Etiketten:
php
Quelle:php.cn
Erklärung dieser Website
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
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!