HObfus v2.04
Overriding Configurations

You can override the HObfus configurations on a per-instance basis. To do so, pass the key-value pairs of HObfus configurations to the HObfus_begin function as a PHP array, like shown below.

HObfus_begin(array(
	key1=>value1,
	key2=>value2,
	key3=>value3,
	......
	......
	......
	keyN=>valueN,
));
Example 1

Override $cfg["verify-hostname"] and $cfg["verify-protocol"] with 1 and 1, respectively.

<?php HObfus_begin(array(
	"verify-hostname"=>1,
	"verify-protocol"=>1,
)); ?>
Example 2

Override $cfg["remove-script"] and $cfg["remove-comment"] with 0 and 0, respectively.

<?php HObfus_begin(array(
	"remove-script"=>0,
	"remove-comment"=>0,
)); ?>

« Back
$cfg["return-output"]