This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ClassConvertMoneyWithInjection | |
{ | |
/** @var IConversor */ | |
public $service; | |
public function setService(IConversor $srv) { | |
$this->service=$srv; | |
} | |
public function example($money) { | |
echo "$money is converted in ".$this->service->conversor($money)."<br>"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ClassConvertMoneyWithoutInjection | |
{ | |
function conversor($value) | |
{ | |
return $value*1.15; | |
} | |
public function example($money) { | |
echo "$money is converted in ".$this->conversor($money)."<br>"; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
catname | count | |
---|---|---|
cheap | 3 | |
normal | 3 | |
expensive | 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name | type | catname | |
---|---|---|---|
cocacola | drink | cheap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name | type | catname | |
---|---|---|---|
bmw | car | expensive | |
cocacola | drink | cheap | |
fanta | drink | cheap | |
galaxy note | phone | normal | |
iphone | phone | normal | |
sprite | drink | cheap | |
volvo | car | expensive | |
xiami | phone | normal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name | type | catname | |
---|---|---|---|
cocacola | drink | cheap | |
fanta | drink | cheap | |
sprite | drink | cheap | |
iphone | phone | normal | |
galaxy note | phone | normal | |
xiami | phone | normal | |
volvo | car | expensive | |
bmw | car | expensive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
idproduct | name | type | id_category | catname | |
---|---|---|---|---|---|
1 | cocacola | drink | 1 | cheap | |
2 | fanta | drink | 1 | cheap | |
3 | sprite | drink | 1 | cheap | |
4 | iphone | phone | 2 | normal | |
5 | galaxy note | phone | 2 | normal | |
6 | xiami | phone | 2 | normal | |
7 | volvo | car | 3 | expensive | |
8 | bmw | car | 3 | expensive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
idproduct | name | type | id_category | |
---|---|---|---|---|
1 | cocacola | drink | 1 | |
2 | fanta | drink | 1 | |
3 | sprite | drink | 1 | |
4 | iphone | phone | 2 | |
5 | galaxy note | phone | 2 | |
6 | xiami | phone | 2 | |
7 | volvo | car | 3 | |
8 | bmw | car | 3 |
NewerOlder