Skip to content

Instantly share code, notes, and snippets.

@Behram-Khattak
Last active August 2, 2022 11:30
Show Gist options
  • Save Behram-Khattak/54350b2d2ce6bcb4fd3e803c9e07ceea to your computer and use it in GitHub Desktop.
Save Behram-Khattak/54350b2d2ce6bcb4fd3e803c9e07ceea to your computer and use it in GitHub Desktop.
List of ISO Currency Codes Php Array
// These currency codes are allowed by stripe to make payments.
// While creating payments with Stripe Charge or PaymentIntent.
// Currency codes are necessary to add while doing payment with Stripe.
$IsoCurrencyCodes = [
"aed",
"afn",
"all",
"amd",
"ang",
"aoa",
"ars",
"aud",
"awg",
"azn",
"bam",
"bbd",
"bdt",
"bgn",
"bhd",
"bif",
"bmd",
"bnd",
"bob",
"brl",
"bsd",
"btn",
"bwp",
"byn",
"byr",
"bzd",
"cad",
"cdf",
"chf",
"clf",
"clp",
"cny",
"cop",
"crc",
"cuc",
"cup",
"cve",
"czk",
"djf",
"dkk",
"dop",
"dzd",
"egp",
"ern",
"etb",
"eur",
"fjd",
"fkp",
"gbp",
"gel",
"ghs",
"gip",
"gmd",
"gnf",
"gtq",
"gyd",
"hkd",
"hnl",
"hrk",
"htg",
"huf",
"idr",
"ils",
"inr",
"iqd",
"irr",
"isk",
"jmd",
"jod",
"jpy",
"kes",
"kgs",
"khr",
"kmf",
"kpw",
"krw",
"kwd",
"kyd",
"kzt",
"lak",
"lbp",
"lkr",
"lrd",
"lsl",
"ltl",
"lvl",
"lyd",
"mad",
"mdl",
"mga",
"mkd",
"mmk",
"mnt",
"mop",
"mro",
"mur",
"mvr",
"mwk",
"mxn",
"myr",
"mzn",
"nad",
"ngn",
"nio",
"nok",
"npr",
"nzd",
"omr",
"pab",
"pen",
"pgk",
"php",
"pkr",
"pln",
"pyg",
"qar",
"ron",
"rsd",
"rub",
"rwf",
"sar",
"sbd",
"scr",
"sdg",
"sek",
"sgd",
"shp",
"skk",
"sll",
"sos",
"srd",
"ssp",
"std",
"svc",
"syp",
"szl",
"thb",
"tjs",
"tmt",
"tnd",
"top",
"try",
"ttd",
"twd",
"tzs",
"uah",
"ugx",
"usd",
"uyu",
"uzs",
"vef",
"vnd",
"vuv",
"wst",
"xaf",
"xag",
"xau",
"xcd",
"xdr",
"xof",
"xpf",
"yer",
"zar",
"zmk",
"zmw",
"btc",
"jep",
"eek",
"ghc",
"mtl",
"tmm",
"yen",
"zwd",
"zwl",
"zwn",
"zwr"
];
@Umar-444
Copy link

Umar-444 commented Aug 2, 2022

I was searching for this solution in google but I found it here thank you sir..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment