w3resource

PHP Exercises: Check if a given array of integers and length 2, contains 15 or 20

PHP Basic Algorithm: Exercise-95 with Solution

Write a PHP program to check if a given array of integers and length 2, contains 15 or 20.

Sample Solution:

PHP Code :

<?php
// Define a function named 'test' that takes an array of numbers as a parameter
function test($nums)
 { 
    // Return true if the first element is equal to 15 or 20, or if the second element is equal to 15 or 20
    return $nums[0] == 15 || $nums[0] == 20 || $nums[1] == 15 || $nums[1] == 20;
 }   

// Check and display the result of calling 'test' with the array [12, 20]
var_dump(test([12, 20]));

// Check and display the result of calling 'test' with the array [14, 15]
var_dump(test([14, 15]));

// Check and display the result of calling 'test' with the array [11, 21]
var_dump(test([11, 21]));
?>

Explanation:

  • Function Definition:
    • A function named test is defined, which takes one parameter:
      • $nums: an array of numbers.
  • Return Condition:
    • The function checks whether:
      • The first element of the array ($nums[0]) is equal to 15 or 20.
      • The second element of the array ($nums[1]) is equal to 15 or 20.
    • If any of these conditions is true, the function returns true; otherwise, it returns false.

Output:

bool(true)
bool(true)
bool(false)

Flowchart:

Flowchart: Check if a given array of integers and length 2, contains 15 or 20.

PHP Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a PHP program to create a new array taking the first and last elements of a given array of integers and length 1 or more.
Next: Write a PHP program to check if a given array of integers and length 2, does not contain 15 or 20.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/php-exercises/basic-algorithm/php-basic-algorithm-exercise-95.php