在 wordpress 中查找并打印 mysql 的主机名

Find and print the host name of the mysql in wordpress

我正在尝试使用 wordpress 查找 sql 的 hostname。即我想从 'http://**localhost**/velocity/wordpress/?page_id=4'

打印 'localhost'

我尝试了函数home_get_url(),但是我得到了如上所示的完整路径。 当我尝试使用 gethostname() 时,我得到了我的 PC 名称 。 '

请帮忙。我是 wordpress 的新手

您可以使用$_SERVER['HTTP_HOST']

对于 http://localhost/velocity/wordpress/?page_id=4 它将 return http://localhost

希望对您有所帮助。

printf("MySQL host info: %s\n", mysql_get_host_info());

你也可以试试。

<?php
echo gethostname(); // may output e.g,: sandie

// Or, an option that also works before PHP 5.3
echo php_uname('n'); // may output e.g,: sandie
?>

了解更多信息。 http://www.php.net/manual/en/function.gethostname.php