evidenttutorials.com
Home CodeIgniter Django Go HTML JavaScript jQuery PHP Python Server SQL
First Previous Page 2 of 4. Next Last
August 17, 2024

PHP implode()

implode() function is one of the most important PHP's built in function of array. Sometimes it happened that you want to convert an array's elements into a string so for the same you can use implode function in PHP. implode function requires two string arguments first is a separator string and second array from which you will create the string.

Read more... 
August 17, 2024

PHP reverse string with strrev() function

If you want to reverse any string then you can do this with using strrev() function. strrev function required one string argument for arranging in reverse order.

Read more... 
August 17, 2024

PHP removing extra spaces or characters using trim()

Some times it happens you want to remove spaces or any other character from the right and left side from a string. So you can easily do that with using trim function. trim function requires two arguments first is the string from where you want to remove spaces or character or second is character which you want to trim.

Read more... 
August 17, 2024

PHP substr

If you want to get sub string from a string so you can easily do this through PHP's built in function substr. This function required three parameters first is the whole string, second parameter indicate index value from where you want to retrieve the sub string

Read more... 
August 17, 2024

PHP String Compare

Comparison of two strings in PHP is very easy task. Like integer values you can also compare string with using equal to operator (==) inside of if conditional statement. It is as easy as you are comparing two values.

Read more... 
August 17, 2024

PHP wordwrap

You can wrap words after a specific number of characters in a string with using wordrap() PHP's built in function.

Read more... 
August 17, 2024

Capitalize first character of each word in a string with ucwords function

You can convert first character in upper case of each word in a string with using ucwords function. This function takes once argument.

Read more... 
August 17, 2024

Capitalize first character of a string with ucfirst function in PHP

You can convert first character in upper case of a string into upper case with using ucfirst function. This function takes one argument. The example of ucfirst function is mentioned below:

Read more... 
August 17, 2024

Change string in upper case with strtoupper function

You can convert a string into upper case (all letters in capital letters) with using strtoupper function. The example of strtoupper method is mentioned below:

Read more... 
August 17, 2024

Change string in lower case with strtolower function

You can convert a string into lower case (all letters in small letters) with using of strtolower function. The example of strtolower method is mentioned below:

Read more... 
First Previous Page 2 of 4. Next Last

Latest Posts

You can find latest posts below:

Get all keys as an array in PHP of a given array Difference between truncate and delete all query in MySQL? Capitalize first character of each word in a string in JavaScript Capitalize first character of each word in a string in Go Capitalize first character of each word in a string in Python
About Us Privacy Policy Disclaimer