How to write a class that sort an array of integers in PHP

1 Answer

0 votes
class MyClass {
    protected $arr;
    
    public function __construct(array $_arr) {
        $this->arr = $_arr;
    }
    public function f_sort() {
        sort($this->arr);
        return $this->arr;
    }
}
$arr = new MyClass(array(8, 4, 0, 2, -1, 9, 3));
print_r($arr->f_sort());
      
 
   
/*
run:
        
Array ( [0] => -1 [1] => 0 [2] => 2 [3] => 3 [4] => 4 [5] => 8 [6] => 9 ) 
       
*/

 



answered Mar 25, 2019 by avibootz
...