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 $client = new Mosquitto\Client; $client->setCredentials('MNSKqoEouEb3ZTiDgZ1c', '')..
Decoded Output download
<? ?php
$client = new Mosquitto\Client;
$client->setCredentials('MNSKqoEouEb3ZTiDgZ1c', '');
$client->onConnect(function() use ($client) {
$client->subscribe("#",1);
});
$client->onMessage(function($client){
print_r($client);
});
$client->connect('mqtt.btc.com.tw',1883);
$client->loopForever(); ?>
Did this file decode correctly?
Original Code
?php
$client = new Mosquitto\Client;
$client->setCredentials('MNSKqoEouEb3ZTiDgZ1c', '');
$client->onConnect(function() use ($client) {
$client->subscribe("#",1);
});
$client->onMessage(function($client){
print_r($client);
});
$client->connect('mqtt.btc.com.tw',1883);
$client->loopForever();
Function Calls
None |
Stats
MD5 | c113a4d182beb8817dad1a68ab2b6c00 |
Eval Count | 0 |
Decode Time | 79 ms |