Skip to content

Instantly share code, notes, and snippets.

@emir
Created December 1, 2016 23:14
Show Gist options
  • Save emir/d31bd88e3b4666b2e71151b8dd3a72ae to your computer and use it in GitHub Desktop.
Save emir/d31bd88e3b4666b2e71151b8dd3a72ae to your computer and use it in GitHub Desktop.
<?php
declare(strict_types=1);
$dollar = $_GET['dollar'] ?? null;
function usdToTurkishLira(float $dollar) {
return $dollar * 3.50;
}
try{
echo usdToTurkishLira("2.5");
} catch(Throwable $e) {
echo "Tip yanlı$: {$e->getMessage()}";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment