[PHP-DEV] Cannot compile latest PHP_5_1 with gcc 3.2.2

2004-11-02 Thread Cyprien \"Fulax\" Nicolas
Hello, I hope I post on the good list, I though that posting that note on php-install list won't be coherent as this is a developpement version. So, when I tried to make php 5.1.0-dev, the build failled : gcc -Iext/standard/ -I/usr/src/php/php-5.1-cgi/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php

[PHP-DEV] Can *sort functions return the sorted array ?

2004-10-25 Thread Fulax
Hi, I wonder if it will be possible to add an extra argument to the *sort functions to get the sorted array directly. At the moment I have made my own function to do this, here is an example with natsort : function arrnatsort($a_array) { if(natsort($a_array)) return $a_array; else