Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Return an item from the argument list
<?php func_get_arg(int $position): mixed
<?php     public function tempnam(string $dir, string $prefix/*, string $suffix = ''*/)

    {

        $suffix = \func_num_args() > 2 ? func_get_arg(2) : '';

        [$scheme, $hierarchy] = $this->getSchemeAndHierarchy($dir);