Open In App

PHP program to check for Anagram

We are given two strings, we need to check if strings are Anagram. Examples:

Input : "anagram", "nagaram"
Output : yes

Input : "mat", "fat"
Output : no

We use the below inbuilt function to solve this problem:



The idea to solve this problem using the above mentioned function is, to use value 1 i.e. in this chosen mode the above function will return an array with key value pairs, where keys are ASCII values and corresponding values will be the number of occurrences of that ASCII value. The array possess only those keys as ASCII values whose frequency is more than 0. 




// PHP code to check a given string is an anagram
// of another or not
<?php
    function is_anagram($string_1, $string_2)
    {
        if (count_chars($string_1, 1) == count_chars($string_2, 1))
            return 'yes';
        else
            return 'no';    
    }
 
    // Driver code
    print_r(is_anagram('program', 'grampro')."\n");
    print_r(is_anagram('card', 'cart')."\n");
?>

Output:



yes
no

Time Complexity: O(n) where n is the size of the string.

Article Tags :