downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

QuickHashIntSet::saveToString> <QuickHashIntSet::loadFromString
[edit] Last updated: Fri, 17 May 2013

view this page in

QuickHashIntSet::saveToFile

(PECL quickhash >= Unknown)

QuickHashIntSet::saveToFileEste método almacena un conjunto que está en la memoria en el disco

Descripción

public void QuickHashIntSet::saveToFile ( string $filename )

Este método almacena un conjunto existente en un fichero del disco, en el mismo formato que puede leer loadFromFile().

Parámetros

filename

El nombre de fichero del fichero donde almacenar el hash.

Valores devueltos

No devuelve ningún valor.

Ejemplos

Ejemplo #1 Ejemplo de QuickHashIntSet::saveToFile()

<?php
$conjunto 
= new QuickHashIntSet1024 );
var_dump$conjunto->exists) );
var_dump$conjunto->add) );
var_dump$conjunto->exists) );
var_dump$conjunto->add) );

$conjunto->saveToFile'/tmp/prueba.set' );
?>



add a note add a note User Contributed Notes QuickHashIntSet::saveToFile - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites