There's also php_egg_logo_guid() which returns the "easter egg" version of the logo. Same usage.
(PHP 4, PHP 5 < 5.5.0)
php_logo_guid — 获取 logo 的 guid
此函数能够返回用于显示 PHP logo 内置图像的 ID。 图像仅在 expose_php 启用时显示。
自 PHP 5.5.0 起,已经废弃并移除此函数。
返回 PHPE9568F34-D428-11d2-A769-00AA001ACF42
.
版本 | 说明 |
---|---|
5.5.0 | php_logo_guid() 从 PHP 中移除。 |
Example #1 php_logo_guid() 例子
<?php
echo '<img src="' . $_SERVER['PHP_SELF'] .
'?=' . php_logo_guid() . '" alt="PHP Logo !" />';
?>