Answers for "remover caracteres especiais php"

PHP
0

retirrar ultimo caracter php

$resultado = substr($valor,0,-1);
Posted by: Guest on March-23-2021
1

Delete quotes in php

// Provides: Hll Wrld f PHP
$vowels = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($vowels, "", "Hello World of PHP");
Posted by: Guest on September-04-2021

Browse Popular Code Answers by Language