Exemplo n.º 1
0
function BDecode($wholefile)
{
    $decoder = new BDecode();
    $return = $decoder->decodeEntry($wholefile);
    return $return[0];
}
 public static function fromString($str)
 {
     $decoder = new BDecode();
     $return = $decoder->decodeEntry($str);
     return $return[0];
 }