Projekt

Obecné

Profil

Stáhnout (556 Bajtů) Statistiky
| Větev: | Revize:
1
<?php
2

    
3
class Location {
4

    
5
    public $name;
6
    public $town;
7
    public $street;
8
    public $device;
9
    public $area;
10
    
11
    public function __construct($data) {
12
        $this->name = $data[0];
13
        $this->town = $data[1];
14
        $this->street = $data[2];
15
        $this->device = $data[3];
16
        $this->area = $data[4];
17
    }
18
    
19
    public function toString() {
20
        return "<td>".$this->name."</td>"."<td>".$this->town."</td>"."<td>".$this->street."</td>".
21
               "<td>".$this->device."</td>"."<td>".$this->area."</td>";
22
    }
23
}
24

    
25
?>
(1-1/4)