“strtotime” Kode Jawaban

waktu untuk string dalam php

<?php
$date = '27/06/2020, 04:42:43 PM';
$date = str_replace('/', '-', $date);
echo date('F j, Y, g:i a',strtotime($date));

// output : June 27, 2020, 4:42 pm
?>
Mr. Samy

Format Tanggal PHP

$date = '25/05/2010';
$date = str_replace('/', '-', $date);
echo date('Y-m-d', strtotime($date));
Upset Unicorn

strtotime

$date = '25/05/2010';
$date = str_replace('/', '-', $date);
echo date('Y-m-d', strtotime($date));
Annoying Alligator

strtotime

## CAN GET THE DIFFERENCE DATE BY DAY USING [PHP STRTOTIME FUNCTION]
echo (strtotime(date("2022-03-03")) - strtotime(date("2022-04-03"))) /60/60/24;
Nar

Jawaban yang mirip dengan “strtotime”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya