How to remove the two duplicate values
How to remove the two duplicate values
Example I have the variable 1 $help_brother:
$help_brother = '30,45,12,13,14,15';
And the variable 2 Force World:
$force_world = '45,12,15';
The result must be:
Result: '30,13,14';
Any help is welcome. Thanks in advance.