logo SnippetVamp

php 97fonctions 77astuce 69css 52html 43javascript 41fichiers 29jquery 27securite 17texte 16bootstrap 14parser 13debug 11graphisme 11python 10responsive 8pluXML 5crossbrowser 4vanilla 4ajax 3TODO 2auto_ 2conversion 2evenements 2form 2lib 2markdown 2mobile 2bash 1dothtaccess 1effets 1erreurs 1fallback 1filter 1mail 1social 1
Bronco - SnippetVamp 3.0beta - 2021 - GNU GPL - Download
#key - makeRSSdate
// Rendre une date (format anglais) en date valide pour un flux RSS

function makeRSSdate($date=NULL){// format DD-MM-YY HH:MM => rfc2822 (rss compatible)
	if ($date){
		date_default_timezone_set('Europe/Paris');
		$time = strtotime($date);
		return date("r", $time);
	}
}
			
astuce fonctions php
http://stackoverflow.com/questions/1989700/convert-a-date-dd-mm-yy-and-hhmm-vars-to-rfc-822-using-php
public - 12/10/2013 - Add to pack - texte seul - permalink