escapeshellcmd

Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Escape shell metacharacters
<?php escapeshellcmd(string $command): string
<?php         $string = str_replace('"', '', $string);

        $string = str_replace("'", '', $string);



        return escapeshellcmd($string);

    }

}