Answers for "php remove 3 characters"

PHP
3

php remove after character

$s = 'Posted On April 6th By Some Dude';
echo strstr($s, 'By', true); // Posted On April 6th
Posted by: Guest on October-06-2020
0

retirrar ultimo caracter php

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

Code answers related to "php remove 3 characters"

Browse Popular Code Answers by Language