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

Signing you up...

Thank you for signing up!

PHP Decode

<?php $a1=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow"); $a2=array("e"=>"red"..

Decoded Output download

<?php 
$a1=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow"); 
$a2=array("e"=>"red","f"=>"green","g"=>"blue"); 
 
$result=array_intersect($a1,$a2); 
print_r($result); 
?>

Did this file decode correctly?

Original Code

<?php
$a1=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow");
$a2=array("e"=>"red","f"=>"green","g"=>"blue");

$result=array_intersect($a1,$a2);
print_r($result);
?>

Function Calls

array_intersect 1

Variables

$a1 [{'key': 'a', 'value': 'red'}, {'key': 'b', 'value': 'green'}, {'key': 'c', 'value': 'blue'}, {'key': 'd', 'value': 'yellow'}]
$a2 [{'key': 'e', 'value': 'red'}, {'key': 'f', 'value': 'green'}, {'key': 'g', 'value': 'blue'}]

Stats

MD5 ba722de18ec4ff86343c6ee1bd60b8f0
Eval Count 0
Decode Time 102 ms