Category: Php
It will be very easy for you if you have some concepts about Php scripting language. Because it is connected with webhook in many cases and it will be more …
To make a simple Palindrom we just have to write some little code that will work exactly according to our needs. We will get some input from the user and …
Once again we are going to write the code to get our job done without using any single function. We will have an input from the user and then we …
The way to customize the values of an array with the way which you wan’t it to be customized. Just suppose we have an array like this <?php $abc = …
You can have a product of all numerical values in an array. Just you have to use the array_product() function to get this job done. Code Example: <?php $array = …
We can search a value into an array to know weither a value exist in an array or not and if it exist then what its key. This is quite …
As you already knew that how factorial works in mathamatics if not then follow this link Click Here. We are going to write the code that will take a number …
What we will do if we have to count the vowels in a string. Don’t worry i’m going to write the code of it that counts the vowels. Code Example: …
There is no any function in php by which we can convert an string alphabets to alphabetical order. This is some sort of coding challenge or you may face it …
There are some scenerios in which we have to make our keys uppercase or lowecase. We have a function called array_change_key_case() to change our keys in an array to upper …