QuickHashIntStringHash::set

(PECL quickhash >= Unknown)

QuickHashIntStringHash::setThis method updates an entry in the hash with a new value, or adds a new one if the entry doesn't exist

Description

public QuickHashIntStringHash::set(int $key, string $value): int

This method tries to update an entry with a new value. In case the entry did not yet exist, it will instead add a new entry. It returns whether the entry was added or update. If there are duplicate keys, only the first found element will get an updated value. Use QuickHashIntStringHash::CHECK_FOR_DUPES during hash creation to prevent duplicate keys from being part of the hash.

Parameters

key

The key of the entry to add or update.

value

The value of the entry to add. If a non-string is passed, it will be converted to a string automatically if possible.

Return Values

2 if the entry was found and updated, 1 if the entry was newly added or 0 if there was an error.

Examples

Example #1 QuickHashIntStringHash::set() example

<?php
$hash 
= new QuickHashIntStringHash1024 );

echo 
"Set->Add\n";
var_dump$hash->get46692 ) );
var_dump$hash->set46692"sixteen thousand ninety one" ) );
var_dump$hash->get46692 ) );

echo 
"Set->Update\n";
var_dump$hash->set46692"twenty nine thousand nine hundred six" ) );
var_dump$hash->get46692 ) );
?>

The above example will output something similar to:

Set->Add
bool(false)
int(2)
string(27) "sixteen thousand ninety one"
Set->Update
int(1)
string(37) "twenty nine thousand nine hundred six"

Here you can write a comment


Please enter at least 10 characters.
Loading... Please wait.
* Pflichtangabe
There are no comments available yet.

PHP cURL Tutorial: Using cURL to Make HTTP Requests

cURL is a powerful PHP extension that allows you to communicate with different servers using various protocols, including HTTP, HTTPS, FTP, and more. ...

TheMax

Autor : TheMax
Category: PHP-Tutorials

Midjourney Tutorial - Instructions for beginners

There is an informative video about Midjourney, the tool for creating digital images using artificial intelligence, entitled "Midjourney tutorial in German - instructions for beginners" ...

Mike94

Autor : Mike94
Category: KI Tutorials

Basics of views in MySQL

Views in a MySQL database offer the option of creating a virtual table based on the result of an SQL query. This virtual table can be queried like a normal table without changing the underlying data. ...

admin

Autor : admin
Category: mySQL-Tutorials

Publish a tutorial

Share your knowledge with other developers worldwide

Share your knowledge with other developers worldwide

You are a professional in your field and want to share your knowledge, then sign up now and share it with our PHP community

learn more

Publish a tutorial