/ Published in: PHP
Expand |
Embed | Plain Text
class WeatherService{ public function WeatherService(){ //some initialization... } public function getWeatherInfo($city){ return $res; } public function convertFrToC($val){ return (($val+40)*5/9)-40; } } $obj = new WeatherService; $obj->getWeatherInfo("haifa");
You need to login to post a comment.
