user3387758
user3387758

Reputation: 77

How to display date in kurdish using php

In php the date() function displays the date. But I have to display the date in kurdish language.. any one help me.

for example ..have to display the date like this

٢\١٢\٢٠١٤

Upvotes: 0

Views: 105

Answers (2)

diggy
diggy

Reputation: 6828

As your Q is tagged WordPress, you can use date_i18n() to retrieve the date in localized format, based on timestamp:

echo date_i18n( get_option( 'date_format' ), time() )

Upvotes: 1

jawo
jawo

Reputation: 896

You need to encode the given string to whatever charset you are using.

This is not bound to kurdish but to any language which cannot be displayed by your systems defauld charset.

Upvotes: 0

Related Questions