Skip to content

Tag: php

php remove duplicate except original

this is my code <?php $string = 'this this good good hahah'; $rows = explode("n",$string); $unwanted = 'this|good'; $cleanArray= preg_grep("/$unwanted/i",$…

PHP Colour Not Being Acknowledged

I am doing some testing with FPDF and running into an issue. When setting a container to pull it’s colour from a pre-defined variable it is not honoring the value and I can’t see why not. Example …