programming-examples/php/Basics/Program to remove the duplicate values from an array..php

6 lines
80 B
PHP
Raw Normal View History

2019-11-18 14:44:36 +01:00
<?php
$arr = array(10,20,10,30,20,10);
print_r(array_unique($arr));
?>