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

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -