Главная > PHP > stx remove php

stx remove php

Удалить непечатаемые символы

$item['content']=preg_replace('/[[:cntrl:]]/','',$item['content']);

Еще вариант

$item['content']=preg_replace('/[\x00-\x1F\x7F]/','',$item['content']);

Оставить перенос строк \r и \n

$item['content']=preg_replace('/[\x00-\x09\x0B\x0C\x0E-\x1F\x7F]/','',$item['content']);

https://stackoverflow.com/questions/1497885/remove-control-characters-from-php-string

Categories: PHP Tags:
  1. Пока что нет комментариев.
Похожие публикации