Yahoo Poland Wyszukiwanie w Internecie

Search results

  1. 25 wrz 2008 · The line $phpdate = strtotime( $mysqldate ) accepts a string and performs a series of heuristics to turn that string into a unix timestamp. The line $mysqldate = date( 'Y-m-d H:i:s', $phpdate ) uses that timestamp and PHP's date function to turn that timestamp back into MySQL's standard date format.

  2. 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' ); ?>

  3. 20 sie 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.

  4. 2 lut 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().

  5. 31 lip 2022 · You can represent an exact date and time in PHP using the built-in DateTime object. Creating one is simple, just pass it a string in the format YYYY-MM-DD HH:MM:SS. The problem is that sometimes you want to go from a DateTime object back to a string. In this post, we'll learn how to convert a DateTime object to a string in PHP.

  6. 16 sty 2023 · This article demonstrates how to convert a DateTime object to a string in PHP. You can use the format() function of the DateTime class to convert a DateTime object to string in PHP. The DateTime::format function returns the date formatted according to the given format.

  7. 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. Ludzie szukają również