3v4l.org

run code in 300+ PHP versions simultaneously
<?php class User { public function filterName($fullName) { return filter_var($fullName, FILTER_CALLBACK, ['options'=>function($value) { $value = trim($value); // strip tags $value = strip_tags($value); // remove double quotes $value = preg_replace('/["<>\{\}\[\]]+/', '', $value); return $value; }]); } } $user = new User; echo $user->filterName('Foo!"bar" Baz ø hello!<strong>poop</strong>') . "\n"; echo $user->filterName('@непроизносимые 誤解 की اللغويات') . "\n";

preferences:
46.77 ms | 402 KiB | 5 Q