mirror of
https://github.com/php/doc-es.git
synced 2026-03-24 07:22:16 +01:00
132 lines
3.7 KiB
XML
132 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- EN-Revision: bfe06c36ec1c0a37909704b292a204195b0bc14f Maintainer: PhilDaiguille Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="quickhashstringinthash.loadfromstring">
|
|
<refnamediv>
|
|
<refname>QuickHashStringIntHash::loadFromString</refname>
|
|
<refpurpose>Este método de fábrica crea un hash a partir de una cadena</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<modifier>public</modifier> <modifier>static</modifier> <type>QuickHashStringIntHash</type><methodname>QuickHashStringIntHash::loadFromString</methodname>
|
|
<methodparam><type>string</type><parameter>contents</parameter></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>size</parameter><initializer>0</initializer></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>options</parameter><initializer>0</initializer></methodparam>
|
|
</methodsynopsis>
|
|
<simpara>
|
|
Este método de fábrica crea un nuevo hash a partir de una definición en una cadena. El
|
|
formato es el mismo que el utilizado en "loadFromFile".
|
|
</simpara>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>contents</parameter></term>
|
|
<listitem>
|
|
<simpara>
|
|
La cadena que contiene un formato serializado del hash.
|
|
</simpara>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>size</parameter></term>
|
|
<listitem>
|
|
<simpara>
|
|
La cantidad de listas de cubos a configurar. El número que se pasa será
|
|
automáticamente redondeado a la siguiente potencia de dos. También se
|
|
limita automáticamente de 4 a 4194304.
|
|
</simpara>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>options</parameter></term>
|
|
<listitem>
|
|
<simpara>
|
|
Las mismas opciones que el constructor de la clase; excepto que la opción
|
|
size es ignorada. Se calcula automáticamente para ser la misma que el
|
|
número de entradas en el hash, redondeada a la potencia de dos más cercana
|
|
con un límite máximo de 4194304.
|
|
</simpara>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<simpara>
|
|
Devuelve un nuevo QuickHashStringIntHash.
|
|
</simpara>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<example>
|
|
<title>Ejemplo de <function>QuickHashStringIntHash::loadFromString</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$contents = file_get_contents( dirname( __FILE__ ) . "/simple.hash.string" );
|
|
$hash = QuickHashStringIntHash::loadFromString(
|
|
$contents,
|
|
QuickHashStringIntHash::DO_NOT_USE_ZEND_ALLOC
|
|
);
|
|
foreach( range( 0, 0x0f ) as $key )
|
|
{
|
|
$i = 48712 + $key * 1631;
|
|
$k = base_convert( $i, 10, 36 );
|
|
echo $k, ' => ', $hash->get( $k ), "\n";
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs.similar;
|
|
<screen>
|
|
<![CDATA[
|
|
11l4 => 48712
|
|
12uf => 50343
|
|
143q => 51974
|
|
15d1 => 53605
|
|
16mc => 55236
|
|
17vn => 56867
|
|
194y => 58498
|
|
1ae9 => 60129
|
|
1bnk => 61760
|
|
1cwv => 63391
|
|
1e66 => 65022
|
|
1ffh => 66653
|
|
1gos => 68284
|
|
1hy3 => 69915
|
|
1j7e => 71546
|
|
1kgp => 73177
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</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
|
|
-->
|