Skip to content

Instantly share code, notes, and snippets.

View softon's full-sized avatar

Shiburaj Pappu softon

View GitHub Profile
@softon
softon / StatesOfIndia.php
Created January 13, 2016 10:29
A simple list of states of india
<?php
return [
'AP' => 'Andhra Pradesh',
'AR' => 'Arunachal Pradesh',
'AS' => 'Assam',
'BR' => 'Bihar',
'CT' => 'Chhattisgarh',
'GA' => 'Goa',
'GJ' => 'Gujarat',
<?php
return [
'AF' => 'Afghanistan',
'AX' => 'Aland Islands',
'AL' => 'Albania',
'DZ' => 'Algeria',
'AS' => 'American Samoa',
'AD' => 'Andorra',
'AO' => 'Angola',
@softon
softon / getOrdinal.php
Created January 11, 2016 05:00
A simple function to return the ordinal of any number
<?php
/**
* A simple function to return the ordinal of any number
* E.g: number = 1 => Ordinal = st
* E.g: number = 23 => Ordinal = rd
*
* @param int $number
* @return string
*/
@softon
softon / calculatePercentage.php
Created January 11, 2016 04:55
A simple function to calculate percentage without checking the divisor for zero. Also includes precision point.
<?php
/**
* A simple function to calculate percentage without checking the divisor for zero.
* Also includes precision point
*
* @param $got
* @param $out
* @param int $precision
* @return float|int