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 # mocking WP bloginfo function get_bloginfo($key) { if ($key == "template_url") ..

Decoded Output download

<?php

# mocking WP bloginfo
function get_bloginfo($key) {
  if ($key == "template_url")
    return "http://mocked.url/wp-content/themes/mocked_theme";
  return "mocked_" . $key;
}
 ?>

Did this file decode correctly?

Original Code

<?php

# mocking WP bloginfo
function get_bloginfo($key) {
  if ($key == "template_url")
    return "http://mocked.url/wp-content/themes/mocked_theme";
  return "mocked_" . $key;
}

Function Calls

None

Variables

None

Stats

MD5 00de88463ce8dcf1651f604d75cbd6af
Eval Count 0
Decode Time 91 ms