Salve
sto cercando di implementare del codice personalizzato per gestire i feed direttamente dal sito poiché quello di default del programma mi stà stretto potrei utilizzare la funzione php ► time(); per generare la data ma vorrei rimanere attinente all ' orientamento che segue website affidandosi alla funzione :-
/**
* Get the most recent date in the provided array of PHP times that do not define a future time.
* The date is provided in the RSS format Sun, 15 Jun 2008 21:15:07 GMT
* @param array $timeArr
* @return string
*/
function getLastAvailableDate($timeArr) {
if (count($timeArr) > 0) {
sort($timeArr, SORT_DESC);
$utcTime = time() + date("Z", time());
foreach ($timeArr as $time) {
if ($time <= $utcTime) {
return date("r", $time);
}
}
}
return date("r", time());}
Ho fatto vari tentativi ma mi ritorna sempre un errore
sicuramente sbaglio il passaggio dell argomento $timeArr
che "formato deve avere l'array" io ho utilizzato quello che genera website ad es.
echo getLastAvailableDate(array(1488390480));
ma ho un errore di questo tipo
Warning: date() expects parameter 2 to be long, string given in ► return date("r", $time);
Qualcuno ha provato a lavorare su questa funzione ? grazie