Possible Duplicate:
Convert numeral date(03-11-1991) into arabic no(۱۹۹۱/۱۱/۰۳) php
This is my client's requirement. He want to show Today's date in Normal numbers and below that in Arabic numbers too. see this screen shot
I can get the current date easily by the following code snippet :
$current_date = date('d').'-'.date('m').'-'.date('Y');
but how could i convert the numbers to Arabic numbers and display them.? Please advice good methods to do this.