⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
opt
/
plesk
/
phpenv
/
libexec
/
View File Name :
phpenv-version-file
#!/usr/bin/env bash # Summary: Detect the file that sets the current phpenv version set -e [ -n "$PHPENV_DEBUG" ] && set -x find_local_version_file() { local root="$1" while [ -n "$root" ]; do if [ -e "${root}/.php-version" ]; then echo "${root}/.php-version" exit elif [ -e "${root}/.phpenv-version" ]; then echo "${root}/.phpenv-version" exit fi root="${root%/*}" done } find_local_version_file "$PHPENV_DIR" [ "$PHPENV_DIR" = "$PWD" ] || find_local_version_file "$PWD" global_version_file="${PHPENV_ROOT}/version" if [ -e "$global_version_file" ]; then echo "$global_version_file" elif [ -e "${PHPENV_ROOT}/global" ]; then echo "${PHPENV_ROOT}/global" elif [ -e "${PHPENV_ROOT}/default" ]; then echo "${PHPENV_ROOT}/default" else echo "$global_version_file" fi