php - Extract the date and month in codeigniter -
how extract date , month in codeigniter
<?php echo $row->order_date; ?>
this code return date in yyyy-mm-dd format .i want change format in mm-dd in codeigniter view.
use datetime class
try way
$date = datetime::createfromformat('y-m-d', $row->order_date); $new_date_format = $date->format('m-d');
ps: suppose, order_date
comming db recommand convert date in sql
query.
Comments
Post a Comment