<?php class Foo { const NBSP = "\\xa0"; public function __construct($value) { var_dump(preg_replace('/'.self::NBSP.'/u', '*', $value)); } } new Foo("foo bar"); new Foo("foo\xc2\xa0bar");
You have javascript disabled. You will not be able to edit any code.