Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
39
Task/Middle-three-digits/PHP/middle-three-digits.php
Normal file
39
Task/Middle-three-digits/PHP/middle-three-digits.php
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
// 32-bit builds of PHP: Integers can be from -2147483648 to 2147483647
|
||||
// 64-bit builds of PHP: Integers can be from -9223372036854775808 to 9223372036854775807
|
||||
|
||||
function middlethree($integer)
|
||||
{
|
||||
$int = (int)str_replace('-','',$integer);
|
||||
$length = strlen($int);
|
||||
|
||||
if(is_int($int))
|
||||
{
|
||||
if($length >= 3)
|
||||
{
|
||||
if($length % 2 == 1)
|
||||
{
|
||||
$middle = floor($length / 2) - 1;
|
||||
return substr($int,$middle, 3);
|
||||
}
|
||||
else
|
||||
{
|
||||
return 'The value must contain an odd amount of digits...';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return 'The value must contain at least three digits...';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return 'The value does not appear to be an integer...';
|
||||
}
|
||||
}
|
||||
|
||||
$numbers = array(123, 12345, 1234567, 987654321, 10001, -10001, -123, -100, 100, -12345, 1, 2, -1, -10, 2002, -2002, 0);
|
||||
|
||||
foreach($numbers as $nums)
|
||||
{
|
||||
echo $nums.' : '.middlethree($nums). '<br>';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue