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 include_once 'res/OutPut.php'; $oSciter = new PHPSciter(); $oSciter->setResourcePa..
Decoded Output download
<?php
include_once 'res/OutPut.php';
$oSciter = new PHPSciter();
$oSciter->setResourcePath('file://' . __DIR__ . '/res/');
$oSciter->setWindowFrame(100, 100, 100 + 500 + 1, 100 + 500 + 1);
$oSciter->setWindowTitle('hello');
$oTestOutPut = new TestOutPutHtml();
//Test 1
// ob_start();
// echo $oTestOutPut->contact('neeke test output','hello world.');
// $output = ob_get_contents();
// ob_end_clean();
// $oSciter->loadHtml('<html><body><dev>'. $output .'</dev></body></html>');
//Test 2;
$oSciter->loadHtml($oTestOutPut->procHtml($oTestOutPut->contact('neeke test output case 2.', 'hello world. ')));
$oSciter->setOption(PHPSciter::SCITER_SET_SCRIPT_RUNTIME_FEATURES,
PHPSciter::ALLOW_FILE_IO | PHPSciter::ALLOW_SOCKET_IO | PHPSciter::ALLOW_EVAL |
PHPSciter::ALLOW_SYSINFO);
$oSciter->run(PHPSciter::SW_TITLEBAR | PHPSciter::SW_RESIZEABLE | PHPSciter::SW_MAIN | PHPSciter::SW_ENABLE_DEBUG
|PHPSciter::SW_CONTROLS);
?>
Did this file decode correctly?
Original Code
<?php
include_once 'res/OutPut.php';
$oSciter = new PHPSciter();
$oSciter->setResourcePath('file://' . __DIR__ . '/res/');
$oSciter->setWindowFrame(100, 100, 100 + 500 + 1, 100 + 500 + 1);
$oSciter->setWindowTitle('hello');
$oTestOutPut = new TestOutPutHtml();
//Test 1
// ob_start();
// echo $oTestOutPut->contact('neeke test output','hello world.');
// $output = ob_get_contents();
// ob_end_clean();
// $oSciter->loadHtml('<html><body><dev>'. $output .'</dev></body></html>');
//Test 2;
$oSciter->loadHtml($oTestOutPut->procHtml($oTestOutPut->contact('neeke test output case 2.', 'hello world. ')));
$oSciter->setOption(PHPSciter::SCITER_SET_SCRIPT_RUNTIME_FEATURES,
PHPSciter::ALLOW_FILE_IO | PHPSciter::ALLOW_SOCKET_IO | PHPSciter::ALLOW_EVAL |
PHPSciter::ALLOW_SYSINFO);
$oSciter->run(PHPSciter::SW_TITLEBAR | PHPSciter::SW_RESIZEABLE | PHPSciter::SW_MAIN | PHPSciter::SW_ENABLE_DEBUG
|PHPSciter::SW_CONTROLS);
?>
Function Calls
None |
Stats
MD5 | 2c7132367ad3f6f4710cc6c3a638543b |
Eval Count | 0 |
Decode Time | 129 ms |