Yahoo Αναζήτηση Διαδυκτίου

Αποτελέσματα Αναζήτησης

  1. 13 Μαΐ 2012 · You can use the format method of the DateTime class: $date = new DateTime('2000-01-01'); $result = $date->format('Y-m-d H:i:s'); If format fails for some reason, it will return FALSE .

  2. 20 Αυγ 2024 · Converting a `DateTime` to a string in PHP involves formatting the `DateTime` object into a human-readable format using the `format()` method. This process allows you to represent dates and times as strings in various formats, such as Y-m-d H:i:s.

  3. Formats the time value as a string. The date formatter resource. Value to format. This may be a DateTimeInterface object, an IntlCalendar object, a numeric type representing a (possibly fractional) number of seconds since epoch or an array in the format output by localtime ().

  4. The first method we recommend to use for converting the DateTime object to a string is format. Here is the code to run: <?php $date = new DateTime ( '2000-01-01' ); $result = $date -> format ( 'Y-m-d H:i:s' ); ?>

  5. 10 Οκτ 2019 · Converting a `DateTime` to a string in PHP involves formatting the `DateTime` object into a human-readable format using the `format()` method. This process allows you to represent dates and times as strings in various formats, such as Y-m-d H:i:s.

  6. 2 Φεβ 2024 · Converting DateTime to string in PHP is quite easy, there are useful functions available that are meant for this purpose like format() of DateTime class, date_format(), using the predefined formats or using list().

  7. 15 Μαρ 2013 · The date_format() function returns a date formatted according to the specified format. Note: This function does not use locales (all output is in English). Tip: Also look at the date() function, which formats a local date/time.

  1. Γίνεται επίσης αναζήτηση για