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 if (! function_exists('clock')) { // Log a message to Clockwork, returns Clockwork..
Decoded Output download
<?php
if (! function_exists('clock')) {
// Log a message to Clockwork, returns Clockwork instance when called with no arguments, first argument otherwise
function clock(...$arguments)
{
if (empty($arguments)) {
return app('clockwork');
}
foreach ($arguments as $argument) {
app('clockwork')->debug($argument);
}
return reset($arguments);
}
}
?>
Did this file decode correctly?
Original Code
<?php
if (! function_exists('clock')) {
// Log a message to Clockwork, returns Clockwork instance when called with no arguments, first argument otherwise
function clock(...$arguments)
{
if (empty($arguments)) {
return app('clockwork');
}
foreach ($arguments as $argument) {
app('clockwork')->debug($argument);
}
return reset($arguments);
}
}
Function Calls
None |
Stats
MD5 | 5613d20296470b3c870d10a344542a6a |
Eval Count | 0 |
Decode Time | 101 ms |