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 defined( 'ABSPATH' ) || exit; register_woocommerce_admin_test_helper_rest_route( ..
Decoded Output download
<?php
defined( 'ABSPATH' ) || exit;
register_woocommerce_admin_test_helper_rest_route(
'/tools/run-wc-admin-daily/v1',
'tools_run_wc_admin_daily'
);
/**
* A tool to run the daily wc-admin cron.
*/
function tools_run_wc_admin_daily() {
do_action( 'wc_admin_daily' );
return true;
}
?>
Did this file decode correctly?
Original Code
<?php
defined( 'ABSPATH' ) || exit;
register_woocommerce_admin_test_helper_rest_route(
'/tools/run-wc-admin-daily/v1',
'tools_run_wc_admin_daily'
);
/**
* A tool to run the daily wc-admin cron.
*/
function tools_run_wc_admin_daily() {
do_action( 'wc_admin_daily' );
return true;
}
Function Calls
defined | 1 |
Stats
MD5 | f90cb9971d89ff3821970d46682105c4 |
Eval Count | 0 |
Decode Time | 83 ms |