For instance:
$array = ["a", "b", "c", "a", "a"];
I want to remove all "a"
elements to get output:
$array = ["b", "c"];
Should also work for ints and floats.Thanks guys!
I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print ...
No comments:
Post a Comment