1
0
mirror of https://github.com/php/doc-es.git synced 2026-04-26 00:28:03 +02:00
Files
archived-doc-es/reference/info/functions/php-logo-guid.xml
T
Diego Agulló Falcó 9a915cd73b Updated changes from current EN revision
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@328456 c90b9560-bf6c-de11-be94-00142212c4b1
2012-11-22 16:47:03 +00:00

108 lines
2.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 8ad0d94e1c87b2daabff88e74acc31e8a11eec0a Maintainer: aeoris Status: ready -->
<refentry xml:id="function.php-logo-guid" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>php_logo_guid</refname>
<refpurpose>Obtiene el valor guid del logo</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>string</type><methodname>php_logo_guid</methodname>
<void/>
</methodsynopsis>
<para>
Esta función devuelve el ID que puede ser usado para desplegar el logo de
PHP usando la imagen integrada. El logo es desplegado únicamente si el
valor de <link linkend="ini.expose-php">expose_php</link> es On.
</para>
&warn.deprecated.function.removed-5-5-0;
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Devuelve <literal>PHPE9568F34-D428-11d2-A769-00AA001ACF42</literal>.
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>5.5.0</entry>
<entry>
<function>php_logo_guid</function> ha sido eliminada de PHP.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Ejemplo de <function>php_logo_guid</function></title>
<programlisting role="php">
<![CDATA[
<?php
echo '<img src="' . $_SERVER['PHP_SELF'] .
'?=' . php_logo_guid() . '" alt="¡Logo de PHP!" />';
?>
]]>
</programlisting>
</example>
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>phpinfo</function></member>
<member><function>phpversion</function></member>
<member><function>phpcredits</function></member>
<member><function>zend_logo_guid</function></member>
</simplelist>
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->