How can remove duplicate values from an array php

You can use array_unique function in php


<?php
$value 
= array("test","test1","test2","test"); $value array_unique($value); print_r($value); ?> 


Outputs:

Array
(
[0] => test
[1] => test1
[2] => test2
)