Skip to content

Instantly share code, notes, and snippets.

View kashohel's full-sized avatar
🎯
Focusing

Khorshed Alam kashohel

🎯
Focusing
View GitHub Profile
@kashohel
kashohel / NumberToWordBangla.php
Last active April 11, 2023 15:33
Convert from English number to word in Bangla | ইংরেজি নাম্বার থেকে বাংলা(কথায়) রুপান্তর
<?php
function num2bangla($number)
{
if (($number < 0) || ($number > 999999999))
{
return "নাম্বারটি অতিরিক্ত বড়";
} elseif (!is_numeric($number))
{
return "বৈধ নাম্বার নয়";