PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
CREATE TABLE user_value (`user_name` varchar(4), `user_pass` varchar(3)) ;
Copy Clear
Copy Format Clear
<?php // for ($i = 0; $i <= 3; $i++) { // for ($j = 1; $j <= 6; $j++) { // $num = 100 * $i + $j; // echo $num . " "; // } // echo "\n"; // } // if(!$j){ // echo "success"; // }else{ // echo "failed"; // }; // function dateFormater($date){ // $now = new DateTime($date); // return $now->format('d M Y'); // } // $dateFormater(2024-11-22); function formatDate($date) { $formattedDate = date('j M Y', strtotime($date)); return $formattedDate; } $today = date('2024-11-22'); $formattedToday = formatDate($today); echo $formattedToday;
Show:  
Copy Clear