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 array_diff_uassoc() function : usage variation - Passing integer indexed arr..

Decoded Output download

*** Testing array_diff_uassoc() : usage variation ***

--[{'key': 10, 'value': 10}, {'key': -17, 'value': -17}]--

Did this file decode correctly?

Original Code

--TEST--
Test array_diff_uassoc() function : usage variation - Passing integer indexed array
--FILE--
<?php
echo "*** Testing array_diff_uassoc() : usage variation ***\n";

// Initialise function arguments not being substituted (if any)
$input_array = array(10 => 10, 12 => 12);

$input_arrays = array(
      'decimal indexed' => array(10 => 10, -17 => -17),
      'octal indexed' => array( 012 => 10, -011 => -011,),
      'hexa  indexed' => array(0xA => 10, -0x7 => -0x7 ),
);

foreach($input_arrays as $key =>$value) {
      echo "\n--$key--\n";
      var_dump( array_diff_uassoc($input_array, $value, "strcasecmp") );
      var_dump( array_diff_uassoc($value, $input_array, "strcasecmp") );
}

?>
--EXPECT--
*** Testing array_diff_uassoc() : usage variation ***

--decimal indexed--
array(1) {
  [12]=>
  int(12)
}
array(1) {
  [-17]=>
  int(-17)
}

--octal indexed--
array(1) {
  [12]=>
  int(12)
}
array(1) {
  [-9]=>
  int(-9)
}

--hexa  indexed--
array(1) {
  [12]=>
  int(12)
}
array(1) {
  [-7]=>
  int(-7)
}

Function Calls

array_diff_uassoc 1

Variables

$key [{'key': 10, 'value': 10}, {'key': -17, 'value': -17}]
$value [{'key': 10, 'value': 10}, {'key': -17, 'value': -17}]
$input_array [{'key': 10, 'value': 10}, {'key': 12, 'value': 12}]
$input_arrays [{'key': 'decimal indexed', 'value': [{'key': 10, 'value': 10}, {'key': -17, 'value': -17}]}, {'key': 'octal indexed', 'value': [{'key': 10, 'value': 10}, {'key': -9, 'value': -9}]}, {'key': 'hexa indexed', 'value': [{'key': 10, 'value': 10}, {'key': -7, 'value': -7}]}]

Stats

MD5 e3299566ea3f486d9c4eefaf25e17409
Eval Count 0
Decode Time 103 ms