Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- K2hIterator::key() member function --DESCRIPTION-- K2HASH PHP Extension library ..

Decoded Output download

--TEST--
K2hIterator::key() member function
--DESCRIPTION--
K2HASH PHP Extension library

Copyright 2015 Yahoo Japan Corporation.

K2HASH is key-valuew store base libraries.
K2HASH is made for the purpose of the construction of
original KVS system and the offer of the library.
The characteristic is this KVS library which Key can
layer. And can support multi-processing and multi-thread,
and is provided safely as available KVS.

For the full copyright and license information, please view
the LICENSE file that was distributed with this source code.
--SKIPIF--
<?php 
if(!extension_loaded('k2hash')) die('skip ');
?>
--FILE--
<?php
$handle = k2hpx_open_mem();
k2hpx_set_value($handle, "test", "test-value");

$k2hiter = new K2hIterator($handle);
$key = $k2hiter->key();
echo $key;
echo ",";
unset($k2hiter);

k2hpx_set_value($handle, "test", "sub-value", "sub");

$k2hiter = new K2hIterator($handle, "test");
$key = $k2hiter->key();
echo $key;
unset($k2hiter);

k2hpx_close($handle);
?>
--EXPECT--
test,sub

Did this file decode correctly?

Original Code

--TEST--
K2hIterator::key() member function
--DESCRIPTION--
K2HASH PHP Extension library

Copyright 2015 Yahoo Japan Corporation.

K2HASH is key-valuew store base libraries.
K2HASH is made for the purpose of the construction of
original KVS system and the offer of the library.
The characteristic is this KVS library which Key can
layer. And can support multi-processing and multi-thread,
and is provided safely as available KVS.

For the full copyright and license information, please view
the LICENSE file that was distributed with this source code.
--SKIPIF--
<?php 
if(!extension_loaded('k2hash')) die('skip ');
?>
--FILE--
<?php
$handle = k2hpx_open_mem();
k2hpx_set_value($handle, "test", "test-value");

$k2hiter = new K2hIterator($handle);
$key = $k2hiter->key();
echo $key;
echo ",";
unset($k2hiter);

k2hpx_set_value($handle, "test", "sub-value", "sub");

$k2hiter = new K2hIterator($handle, "test");
$key = $k2hiter->key();
echo $key;
unset($k2hiter);

k2hpx_close($handle);
?>
--EXPECT--
test,sub

Function Calls

k2hpx_open_mem 1
extension_loaded 1

Variables

None

Stats

MD5 0af93e471ae6a674d8351ee6bc266373
Eval Count 0
Decode Time 102 ms