HEX
Server: LiteSpeed
System: Linux s1299.sgp1.mysecurecloudhost.com 4.18.0-553.52.1.lve.el8.x86_64 #1 SMP Wed May 21 15:31:29 UTC 2025 x86_64
User: everest2 (1878)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/everest2/ehaatbazar.com/php-info.php
<?php

header('Content-Type: text/plain');

echo "===== PHP VERSION =====\n";
echo PHP_VERSION . "\n\n";

echo "===== trim() TEST =====\n";

try {
    echo "Result: [" . trim(" hello world ") . "]\n";
} catch (Throwable $e) {
    echo "ERROR: " . $e->getMessage() . "\n";
}

echo "\n===== EXTENSIONS =====\n";

$extensions = get_loaded_extensions();
sort($extensions);

foreach ($extensions as $ext) {
    echo $ext . "\n";
}

echo "\n===== OPcache =====\n";

if (function_exists('opcache_get_status')) {
    $status = @opcache_get_status(false);

    if ($status !== false) {
        echo "Enabled: " . ($status['opcache_enabled'] ? 'Yes' : 'No') . "\n";
    } else {
        echo "OPcache loaded but status unavailable.\n";
    }
} else {
    echo "OPcache not loaded.\n";
}