PHP Tutorial Tutorials - PHP Execution Operators

PHP Execution Operators

The backticks (``) is a Execution Operator.
The backtick operator is disabled when safe mode is enabled or shell_exec() is disabled.

<?php
$output = `ls -al`; // execute a shell command
echo "<pre>$output</pre>";
?> 
Date:2019-10-01 02:22:44 From:www.Lautturi.com author:Lautturi