ÿØÿà JFIF H H ÿÛ C GIF89;
| System: Linux server378.web-hosting.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64 Current Path : /var/softaculous/shopsite/ |
| Current File : //var/softaculous/shopsite/arch.php |
<?php
// What is the architecture ?
function __arch(){
$arch = trim(shell_exec('uname -m'));
$arch = (preg_match('/64/is', $arch) ? 'x86_64' : 'x86');
return $arch;
}
$arch = __arch();
echo '<arch>'.$arch.'</arch>';
@unlink('arch.php');
?>