web Sunucunun PHP sürümünü nasıl öğrenirim

Ana sayfa Forumlar PROGRAMLAMA PHP web Sunucunun PHP sürümünü nasıl öğrenirim web Sunucunun PHP sürümünü nasıl öğrenirim

#16395
Anonim
Pasif

aşağıdaki kodu info.php olarak kaydet ve sunucuda çalıştır

<?php

ob_start();
phpinfo();
$phpinfo = ob_get_contents();
ob_end_clean();

preg_match_all('/#[0-9a-fA-F]{6}/', $phpinfo, $rawmatches);
for ($i = 0; $i < count($rawmatches[0]); $i++)
$matches[] = $rawmatches[0][$i];
$matches = array_unique($matches);

$hexvalue = '0123456789abcdef';

$j = 0;
foreach ($matches as $match)
{

$r = '#';
$searches[$j] = $match;
for ($i = 0; $i < 6; $i++)
$r .= substr($hexvalue, mt_rand(0, 15), 1);
$replacements[$j++] = $r;
unset($r);
}

for ($i = 0; $i

Bana Ders Anlat © 2008-2022