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 namespace Ia\Sdata\Query\Type; /** * * @author Aaron Lozier <aaron@informationarc..
Decoded Output download
<?php
namespace Ia\Sdata\Query\Type;
/**
*
* @author Aaron Lozier <[email protected]>
*/
class Delete extends Single
{
protected function _configureCurl()
{
$ch = parent::_configureCurl();
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE");
return $ch;
}
public function getXmlResult()
{
$this->getRawResult();
if($this->_httpCode=='200')
$this->_rawResult = '<success>true</success>';
return parent::getXmlResult();
}
} ?>
Did this file decode correctly?
Original Code
<?php
namespace Ia\Sdata\Query\Type;
/**
*
* @author Aaron Lozier <[email protected]>
*/
class Delete extends Single
{
protected function _configureCurl()
{
$ch = parent::_configureCurl();
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE");
return $ch;
}
public function getXmlResult()
{
$this->getRawResult();
if($this->_httpCode=='200')
$this->_rawResult = '<success>true</success>';
return parent::getXmlResult();
}
}
Function Calls
None |
Stats
MD5 | ea24f80e13eb75322acc57d1260e390d |
Eval Count | 0 |
Decode Time | 87 ms |