Posts by Fabricio Borges da Silva • 11 points
2 posts
-
0
votes1
answer44
viewsA: How to save ". png" images without black background in php?
The following native functions can help you. $image = imagecreatefrompng($path_to_file); //Trata transparência para PNG imagealphablending($image, false); imagesavealpha($image, true);…
phpanswered Fabricio Borges da Silva 11 -
1
votes4
answers97
viewsA: Find a ( string ) value in a PHP array
Considering the data in this format, you can create a function to standardize the output. $dadosCli1 = array("cep:'000000'", "cidade: 'sao paulo'", "rg: '00.000.000.-00'", "estado: 'sp'"); function…