- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaces.php
More file actions
Latest commit
32 lines (23 loc) · 581 Bytes
/
Copy pathinterfaces.php
File metadata and controls
32 lines (23 loc) · 581 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
interface Template{
publicfunctionsetVariable($name, $var);
publicfunctiongetVariable();
}
class WorkingTemplate implements Template{
private$vars = [];
private$values;
publicfunctionsetVariable($name, $var){
$this->vars[$name] = $var;
}
publicfunctiongetVariable(){
foreach($this->varsas$name=>$var){
$this->values .=$var;
}
return$this->values;
}
}
$obj = newWorkingTemplate();
$obj->setVariable(1, "test1");
$obj->setVariable(2, "test2");
var_dump($obj->getVariable());
?>