Deleting an element from an array in PHP Admin March 15, 2020 There are different ways to delete an array element. 1. Using unset() function - To delete an element from an array, PHP has provided a... Continue Reading
How to convert first character of every word into uppercase? Admin March 15, 2020 In our day-to-day project task, we may ask to get the string from a database or from the user and by using this string we need to process ... Continue Reading
How to check if a string contains a specific word? Admin March 10, 2020 To check if a particular/specific word is present in the given string or not, PHP has provided an inbuilt strpos() function. Syntax:- s... Continue Reading
Write a PHP function which takes a string as input and returns the length and frequency of each word in the string in an HTML table? Admin March 09, 2020 To find number of duplicate occurrence of the word in the string, we need to first loop through each word of the string, save it independen... Continue Reading
How to write a function to reverse a given string without using string reversal functions in PHP? Admin March 08, 2020 To reverse a string without using PHPs inbuilt string function, we have different options. So the first option is instead of using inbuilt ... Continue Reading
Write a program in PHP to find the sum of first 20 even number? Admin March 08, 2020 To get the sum of the first 20 even numbers, we need to first understand what is even number. Let's understand is what is even number... Continue Reading
autoload in php Admin February 10, 2020 When we work on a small project then we include all the related files in the main configuration file. But as the project grows then it b... Continue Reading
PHP Method Chaining Admin February 10, 2020 One of the major changes between PHP4 and PHP5 is that in PHP5 method can return objects. As the name indicates, method chaining is ... Continue Reading
PHP Coding Interview Questions and Answers Admin February 10, 2020 Following are the list of coding questions that are generally asked in the interview. These contain basic as well as advanced... Continue Reading
PHP Interview Questions and Answers Admin February 10, 2020 PHP Interview Questions and Answers: Following are the list of questions that are generally asked in the interview questio... Continue Reading
JSON in PHP Admin February 10, 2020 JSON : JavaScript Object Notation Before jumping right into the details of the JSON, let's understand different data interchange forma... Continue Reading