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 if ($task['time_estimated'] > 0 || $task['time_spent'] > 0): ?> <div class="page..

Decoded Output download

<?php if ($task['time_estimated'] > 0 || $task['time_spent'] > 0): ?>
    <div class="page-header">
        <h2><?= t('Time tracking') ?></h2>
    </div>

    <div class="panel">
        <ul>
            <li><?= t('Estimate:') ?> <strong><?= $this->text->e($task['time_estimated']) ?></strong> <?= t('hours') ?></li>
            <li><?= t('Spent:') ?> <strong><?= $this->text->e($task['time_spent']) ?></strong> <?= t('hours') ?></li>
            <li><?= t('Remaining:') ?> <strong><?= $this->text->e($task['time_estimated'] - $task['time_spent']) ?></strong> <?= t('hours') ?></li>
        </ul>
    </div>
<?php endif ?>

Did this file decode correctly?

Original Code

<?php if ($task['time_estimated'] > 0 || $task['time_spent'] > 0): ?>
    <div class="page-header">
        <h2><?= t('Time tracking') ?></h2>
    </div>

    <div class="panel">
        <ul>
            <li><?= t('Estimate:') ?> <strong><?= $this->text->e($task['time_estimated']) ?></strong> <?= t('hours') ?></li>
            <li><?= t('Spent:') ?> <strong><?= $this->text->e($task['time_spent']) ?></strong> <?= t('hours') ?></li>
            <li><?= t('Remaining:') ?> <strong><?= $this->text->e($task['time_estimated'] - $task['time_spent']) ?></strong> <?= t('hours') ?></li>
        </ul>
    </div>
<?php endif ?>

Function Calls

None

Variables

None

Stats

MD5 5fb924b6f506c9225f9e62ab3138e18e
Eval Count 0
Decode Time 105 ms