I was working on something else and suddenly realized I've got a handful of weird-looking functions defined in PHP. Here's my script:
$v = get_defined_functions();
sort($v["internal"]);
foreach($v["internal"] as $key => $fn) {
if (preg_match('/^_/', $fn)) {
echo $fn . PHP_EOL;
}
}
And here's the output:
_
_dyuweyrj4
_dyuweyrj4r
Those are some REALLY suspicious-looking function names. Can anyone tell me what they do or what extension might have defined them?