Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,886 questions

51,812 answers

573 users

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
...