Oblic Quotes

Oblic quotes, also called backticks, `` ` `` were used to make a shell call to the operating system. They are deprecated in PHP 8.5, and they have no more specific usage.

`` ` `` is a character, that needs to be balanced, when used in PHP.

<?php

    echo `ls -hla`;

    // moder alternative
    echo shell_exec('ls -hla');

?>

Documentation

Related : Balanced, Double Quotes Strings, Single Quotes Strings