Projekt

Obecné

Profil

Stáhnout (415 Bajtů) Statistiky
| Větev: | Revize:
1 a257bb07 horkym
<?php
2
3
class Location {
4
5
    // Pouzivane atributy.
6
    public $name;
7
    public $town;
8
    public $street;
9
    public $device;
10
    
11
    // Nepouzivane.
12
    // public $area;
13
    
14
    public function __construct($data) {
15
        $this->name = $data[0];
16
        $this->town = $data[1];
17
        $this->street = $data[2];
18
        $this->device = substr($data[3], 2);
19
        // $this->area = $data[4];
20
    }
21
    
22
}
23
24
?>