PHP code example of joskolenberg / cardinal
1. Go to this page and download the library: Download joskolenberg/cardinal library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
joskolenberg / cardinal example snippets
Cardinal::make(45)->format() // => 'NE'
Cardinal::make(66)->format(1) // => 'E'
Cardinal::make(66)->format(2) // => 'NE'
Cardinal::make(66)->format(3) // => 'ENE'
Cardinal::make(250)->format(3, true, '-') // => 'WEST-SOUTH-WEST'
Cardinal::make('NNW')->degrees // => 337.5
Cardinal::make('South-West')->degrees // => 225
Cardinal::make('West NorthWest')->degrees // => 292.5
Cardinal::make(250)->formatLocalized(3, true, '-') // => 'West-South-West'
use JosKolenberg\Cardinal\Cardinal;
class DutchCardinal extends Cardinal
{
protected function lang(): array
{
return [
'N' => 'N',
'E' => 'O',
'S' => 'Z',
'W' => 'W',
'NORTH' => 'Noord',
'EAST' => 'Oost',
'SOUTH' => 'Zuid',
'WEST' => 'West',
];
}
}
Cardinal::make(157.5)->formatLocalized(3, true, '-') // => 'Zuid-Zuid-Oost'
use JosKolenberg\Cardinal\Cardinal;
class LocalizedCardinal extends Cardinal
{
protected function lang(): array
{
return [
'N' => __('app.cardinal.n'),
'E' => __('app.cardinal.e'),
'S' => __('app.cardinal.s'),
'W' => __('app.cardinal.w'),
'NORTH' => __('app.cardinal.north'),
'EAST' => __('app.cardinal.east'),
'SOUTH' => __('app.cardinal.south'),
'WEST' => __('app.cardinal.west'),
];
}
}