Current Path : /proc/thread-self/root/proc/thread-self/root/var/softaculous/shopsite/ |
Current File : //proc/thread-self/root/proc/thread-self/root/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'); ?>