usage
Sushee_shell->enableEntities( boolean enabled );
paramètres
enabled: if the entities are enabled or not.
exemples
include_once('../sushee/common.php');
$shell = new Sushee_Shell();
$shell->addCommand(
'<GET>
<CONTACT ID="2"/>
</GET>'
);
$shell->execute();
$firstname = $shell->valueOf('/RESPONSE/RESULTS/CONTACT/INFO/FIRSTNAME');
echo $firstname; // prints "François"
$shell->enableEntities(false);
$firstname = $shell->valueOf('/RESPONSE/RESULTS/CONTACT/INFO/FIRSTNAME');
echo $firstname; // prints "François"