Quick actions

cmd+k|ctrl+k

Navigation

Languages

Date format function for different languages

Snippet info

Language

Php

Visibility

public

Author

mertskaplan

Created

2017-05-13T18:24:19Z

Updated

2017-05-13T18:24:19Z

<?php

/* setting */

$lang = "tr";

/* function */

function dateFormat($timestamp = 0){
	global $lang;
	if ($lang == 'tr') {
		$date = iconv('latin5','utf-8',strftime('%e %B %Y - %H:%M', $timestamp));
	} else {
		$date = date('d F Y - H:i', $timestamp);
	}
	return $date;
}


/* using */

echo dateFormat(time());
INFO