PHP 8.1.28 Released!

SeasLog::setDatetimeFormat

(PECL seaslog >=1.0.0)

SeasLog::setDatetimeFormatSet SeasLog datetime format style

Beschreibung

public static SeasLog::setDatetimeFormat(string $format): bool

Set SeasLog datetime format style.

Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Parameter zur Verfügung.

Parameter-Liste

format

String. Such as `Y-m-d H:i:s` or `Ymd His`. See also first param `format` at date().

Rückgabewerte

Return TRUE on setted datetime format success, FALSE on failure.

Beispiele

Beispiel #1 SeasLog::setDatetimeFormat() example

<?php

var_dump
(SeasLog::setDateTimeFormat('Ymd His'));

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

bool(true)

Siehe auch

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top