Skip to content

Category Archives: Web Technologies

You are given an array of strings. You have to sort the given array in standard way (case of alphabets matters) as well as natural… Read More
The sort() function is an inbuilt function in PHP and is used to sort an array in ascending order i.e, smaller to greater. It sorts… Read More
The stristr() function is a built-in function in PHP. It searches for the first occurrence of a string inside another string and displays the portion… Read More
The Javascript Map.has() method in JavaScript is used to check whether an element with a specified key exists in a map or not. It returns… Read More
Euler’s Number or commonly known as e is a very popular irrational number which approximates to 2.718281828 and is one of the most important mathematical… Read More
The array_merge_recursive() is an inbuilt function in PHP and is used to merge two or more arrays into a single array recursively. This function is… Read More
The strpbrk() function is an in-built function in PHP which searches a string for any of the specified characters. This function returns the rest of… Read More
The strtr() is an inbuilt function in PHP which is used to replace a substring in a string to a given string of characters. It… Read More
The array_product() is an inbuilt function in PHP and it returns the product of all numbers present in the given array. The function accepts an… Read More
The stripslashes() function is a built-in function in PHP. This function removes backslashes in a string. Syntax: stripslashes(string) Parameter: This function accepts only one parameter… Read More
You are given two arrays of n-elements each. You have to find all the common elements of both elements, without using any loop in php… Read More
The parse_str() function is a built-in function in PHP which parses a query string into variables. The string passed to this function for parsing is… Read More
The str_shuffle() function is an inbuilt function in PHP and is used to randomly shuffle all the characters of a string passed to the function… Read More
In our previous article, we had added functionality to our Calculator app and we had successfully created a fully functional calculator application using React. But… Read More
In our previous article, we had built the structure of our UI, but we haven’t added styles to it neither we have added any functionality.… Read More

Start Your Coding Journey Now!