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

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -