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 /** @phpstub */ class KTaglib_MPEG_AudioProperties { /** * Returns the bit..
Decoded Output download
<?php
/** @phpstub */
class KTaglib_MPEG_AudioProperties
{
/**
* Returns the bitrate of the MPEG file
*
* @return int Returns the bitrate as an integer
*/
public function getBitrate()
{
}
/**
* Returns the amount of channels of a MPEG file
*
* @return int Returns the channel count as an integer
*/
public function getChannels()
{
}
/**
* Returns the layer of a MPEG file
*
* @return int Returns the layer as an integer
*/
public function getLayer()
{
}
/**
* Returns the length of a MPEG file
*
* @return int Returns the length as an integer
*/
public function getLength()
{
}
/**
* Returns the sample bitrate of a MPEG file
*
* @return int Returns the sample bitrate as an integer
*/
public function getSampleBitrate()
{
}
/**
* Returns the version of a MPEG file
*
* @return int Returns the version
*/
public function getVersion()
{
}
/**
* Returns the copyright status of an MPEG file
*
* @return bool Returns true if the MPEG file is copyrighted
*/
public function isCopyrighted()
{
}
/**
* Returns if the file is marked as the original file
*
* @return bool Returns true if the file is marked as the original file
*/
public function isOriginal()
{
}
/**
* Returns if protection mechanisms of an MPEG file are enabled
*
* @return bool Returns true if protection mechanisms (like DRM) are enabled for this file
*/
public function isProtectionEnabled()
{
}
} ?>
Did this file decode correctly?
Original Code
<?php
/** @phpstub */
class KTaglib_MPEG_AudioProperties
{
/**
* Returns the bitrate of the MPEG file
*
* @return int Returns the bitrate as an integer
*/
public function getBitrate()
{
}
/**
* Returns the amount of channels of a MPEG file
*
* @return int Returns the channel count as an integer
*/
public function getChannels()
{
}
/**
* Returns the layer of a MPEG file
*
* @return int Returns the layer as an integer
*/
public function getLayer()
{
}
/**
* Returns the length of a MPEG file
*
* @return int Returns the length as an integer
*/
public function getLength()
{
}
/**
* Returns the sample bitrate of a MPEG file
*
* @return int Returns the sample bitrate as an integer
*/
public function getSampleBitrate()
{
}
/**
* Returns the version of a MPEG file
*
* @return int Returns the version
*/
public function getVersion()
{
}
/**
* Returns the copyright status of an MPEG file
*
* @return bool Returns true if the MPEG file is copyrighted
*/
public function isCopyrighted()
{
}
/**
* Returns if the file is marked as the original file
*
* @return bool Returns true if the file is marked as the original file
*/
public function isOriginal()
{
}
/**
* Returns if protection mechanisms of an MPEG file are enabled
*
* @return bool Returns true if protection mechanisms (like DRM) are enabled for this file
*/
public function isProtectionEnabled()
{
}
}
Function Calls
None |
Stats
MD5 | 13f323fa17ce1049567c040f59df27c0 |
Eval Count | 0 |
Decode Time | 157 ms |