12 lines
281 B
PHP
12 lines
281 B
PHP
<?php
|
|
$email = "alpha@fake.thm";
|
|
$seed_value = 1324931;
|
|
|
|
$email_length = strlen($email);
|
|
$email_hex = hexdec(substr($email, 0, 8));
|
|
$sum_value = dechex($seed_value);
|
|
|
|
$constant_value = $sum_value - ($email_length + $email_hex);
|
|
echo "The constant value is: " . $constant_value;
|
|
?>
|