http://www.php.net/manual/fr/function.usort.php
Tu as un problème de récursion, car là c'est comme si tu avais 100 profondeurs d'itérations, du genre :
Donc normal qu'il pète un plomb :]
(25-02-2011, 11:46 PM)php_addict a écrit : Fatal error: Maximum function nesting level of '100' reached, aborting!
Tu as un problème de récursion, car là c'est comme si tu avais 100 profondeurs d'itérations, du genre :
for ($i1 = 0; $i1 < 100; $i1++) {
for ($i2 = 0; $i2 < 100; $i2++) {
for ($i3 = 0; $i3 < 100; $i3++) {
for ($i4 = 0; $i4 < 100; $i4++) {
for ($i5 = 0; $i5 < 100; $i5++) {
etc...
}
}
}
}
}
Donc normal qu'il pète un plomb :]