Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php $dates = [ "2020-06-01", "2020-07-01", "2020-08-01", "2020-09-01", "2021-01-01", "2022-01-01", "2022-06-01", "2022-08-01", "2022-10-01", "2023-04-01", ]; $res = array_map( fn($d) => date('Y-m-d', strtotime("-1 year", strtotime($d))), $dates ); print_r($res);
Copy Clear