Answers for "php string strip ascii characters"

PHP
24

php remove last character in string

//Remove the last character using substr
$string = substr($string, 0, -1);
Posted by: Guest on April-02-2020
2

php substr remove last 4 characters

echo substr($string, 0, -3);
Posted by: Guest on October-24-2020
0

php regex non printable characters

myprompt> php -a
Interactive shell

php > $string = "‘Hello,’ she said.";
php > $result = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $string);
php > echo $result;
Hello, she said.
Posted by: Guest on April-30-2020
0

php regex non printable characters

$result = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $string);
Posted by: Guest on April-30-2020

Code answers related to "php string strip ascii characters"

Browse Popular Code Answers by Language