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-- Test function key_exists() by calling it with its expected arguments --CREDITS-- ..

Decoded Output download

*** test key_exists() by calling it with its expected arguments ***

Did this file decode correctly?

Original Code

--TEST--
Test function key_exists() by calling it with its expected arguments
--CREDITS--
Francesco Fullone [email protected]
#PHPTestFest Cesena Italia on 2009-06-20
--FILE--
<?php
echo "*** test key_exists() by calling it with its expected arguments ***\n";
$a = array('bar' => 1);
var_dump(key_exists('bar', $a));
var_dump(key_exists('foo', $a));
?>
--EXPECT--
*** test key_exists() by calling it with its expected arguments ***
bool(true)
bool(false)

Function Calls

key_exists 1

Variables

$a [{'key': 'bar', 'value': 1}]

Stats

MD5 4c9f74c3fe0e1ef91acb549c3a7f82b3
Eval Count 0
Decode Time 171 ms