PHP: Execution Operator
PHP has a shorthand form to execute shell commands and get their result.
<?php
$contents = `ls -a`;
echo $contents;
The manual says:
Use of the backtick operator is identical to shell_exec().
Why is it an operator?
You can even use backticks with interpolation to get bugs for free:
<?php
$files = "";
echo `rm -rf {$files}/*`;