PMA\libraries\Util::showPHPDocu PHP Method

showPHPDocu() public static method

Displays a link to the PHP documentation
public static showPHPDocu ( string $target ) : string
$target string anchor in documentation
return string the html link
    public static function showPHPDocu($target)
    {
        $url = PMA_getPHPDocLink($target);
        return self::showDocLink($url);
    }
Util