Skip to content

Tag: wordpress

How can I remove duplicate record in php (Array unique)

I have an array of records and I want to remove the duplicate record. I know we can use array_unique() to remove duplicate value but in my case I have an array of records like(Date, Url, xyz). I want to skip the date column while checking the duplicate record. You can check my code bellow. You can check that …