Skip to content

Tag: php

How to filter expanded datasets in json URL?

I am trying to filter results in my json URL’s expanded dataset. I can filter the regular data just fine but I am having issues reaching the expanded data which is being returned as a nested array (I believe). For example I use this url to filter and only display the city Austin: I am able to expand thi…

Assign filename dynamically in a response

in my web application created with Laravel 8, I need to download an .xml file and the file name must be dynamically created, as per the title. this is because the file name is composed following a specific rule and having to include today’s date. $filename = ‘FirstPart_’.date(“Y-m-d&#8…

How to display fractional part of a decimal in tens in French

I want to display a decimal in words in French. I succeeded doing that using the NumberFormatter class. Here’s my code The output was vingt virgule un sept instead of vingt virgule dix-sept Please how can I fix this? Thanks Answer vingt virgule un sept is correct though. It’s just another way to s…