skip to Main Content
author
212 views
0 votes

How to remove invisible characters while removing emojis in Laravel/PHP?

we are using Laravel and a package called maatwebsite/excel for exporting data via XLS for our clients
In a recent

author
165 views
2 votes

php loop through array and output date and counter

So I have this code:
$avaDates = [['date_starts'=>'2024-03-01'],['date_starts'=>'2024-03-09'],['date_starts'=>'2024-04-05'],['date_starts'=>'2024-04-09'],['date_starts'=>'2024-04-15'],['date_starts'=>'2024-05-03']];
$sum = 0;
$months = '';
foreach($avaDates as $date){

Back To Top
Search