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 App\Services; use App\Models\Song; class TranscodingService { publi..

Decoded Output download

<?php

namespace App\Services;

use App\Models\Song;

class TranscodingService
{
    public function songShouldBeTranscoded(Song $song): bool
    {
        return ends_with(mime_content_type($song->path), 'flac') && config('koel.streaming.transcode_flac');
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace App\Services;

use App\Models\Song;

class TranscodingService
{
    public function songShouldBeTranscoded(Song $song): bool
    {
        return ends_with(mime_content_type($song->path), 'flac') && config('koel.streaming.transcode_flac');
    }
}

Function Calls

None

Variables

None

Stats

MD5 e7902beb3b46d368328d3bd9a08c8ee4
Eval Count 0
Decode Time 105 ms