PHP Strings | String Functions in PHP | Escape Sequence Characters in PHP | PHP String Functions

preview_player
Показать описание
#rohit #kautkar #rohitkautkar #strlen() #strpos() #strtolower() #strtoupper() #strrev() #str_word_count() #count #strcmp() #stripos() #strcasecmp() #str_replace #lcfirst() #ucfirst() #ucwords() #wbp #22619

PHP Strings | String Functions in PHP | Escape Sequence Characters in PHP | PHP String Functions

Hello friends welcome to this video, in this video we are going to understand strings in PHP. As well we will understand various builtin functions in php for string manipulation. Web Application Development using PHP WBP 22619 WBP Practicals String manipulations in PHP

Your questions:
PHP Tutorial - PHP String Functions
Learn PHP Strings - Tutorial for Beginners
PHP Strings
What are strings in PHP?
How do strings work in PHP?
What are the different string functions PHP?
How many string functions are there in PHP?
PHP Strings: PHP String Functions Explained with Examples
How to Create and Manipulate Strings in PHP
How To Work with Strings in PHP |
12 Basic String Functions in PHP (with Examples)
How to creating and accessing string function in PHP
PHP Tutorial (1) Strings, Variables, Echo, Arrays
String Functions in Php | PHP Tutorial
Strings & String functions | PHP for Beginners -
String Manipulation in PHP
String Functions in PHP
types of strings in php
string functions in php
formatting strings in php
how to declare a string in php
which escape sequences can be used in single quoted ( ' ) strings in php?
how are strings used in php
php (string) cast
array functions in php
PHP Strings

Strings==
Sequence of letters, numbers , special characters which are enclose in single quotation or double quotation.

$demo='This is Demo';

$demo="This is demo";

$a=10;

echo 'The value of a is $a';

The value of a is $a

Escape Sequence characters==
\n
\t
\$
\"
\'
\\
\r

String Manipulation in PHP

1)calculating the length of string

strlen($str);

2)counting number of words

str_word_count($str);

3)Replce text in string

str_replace(search_string,replace_string,input_string);

4)Reverse String

strrev($str);

5)comparing strings

strcmp($str1,$str2)==case sensitive

0==when str1 is less than str2
0==when str1 is greater than str2
0== when both string are equal

It returns some random integer value

strcasecmp()==

== equal to operator

6)finding the position of string

strpos($inputstring,$search_string,$start)

==case sensitive

stripos()

7)converting string to lower case

strtolower($str);

8) converting string to upper case

strtoupper($str);

9)converting first chart of string to lowercase

lcfirst($str);

10)converting first char to uppercase

ucfirst($str);

11)converting first char to upper case for every word in string

ucwords($str)

types of strings in php
string functions in php
formatting strings in php
how to declare a string in php
which escape sequences can be used in single quoted strings in php
how are strings used in php
php string cast
array functions in php
array data structure
string
integer
boolean data type
object
floatingp arithmetic
string functions in php
types of strings in php
how to declare a string in php
formatting strings in php
how are strings used in php
creating and accessing string in php
php string
strings in php tutorials point
strings in php pdf
strings in php in hindi
php string ppt
strings in php 7
strings in php list
strings in php comparison
strings in php types
strings in php java
how to concatenate two strings in php
compare two strings in php
how to concatenate strings in php
comparing strings in php
types of strings in php
operator not supported for strings in php
how to add two strings in php
compare 2 strings in php
array of strings in php
append strings in php
strings and arrays in php
string function in php
strings and regular expressions in php
strings concat in php
strings list in php
strings delimited in php
strings escaping in php
strings immutable in php
strings count in php
strings length in php
php string functions
string functions in php
php string manipulation
php string functions with examples
string handling functions in php
php string functions list
string functions in php with example
php 7 string functions
creating strings in php
php functions
php tutorial
php tutorials
best php tutorial youtube
web design tutorial
web development tutorial
web technology tutorial
php tutorial
php tutorial for beginners
php programming
learn php
php for beginners
php programming tutorial
php strings
php for absolute beginners
php basics
php tutorial for absolute beginners
php tutorials
learn php for beginners
php (programming language)
learn php web development
learn php 2020
learn php in 15 minutes
php string functions
php string
php string functions tutorial
php string concatenation
php string tutorial

php string functions,string functions in php,php string manipulation,php string functions with examples,string handling functions in php,php string functions list,string functions in php with example,php 7 string functions,creating strings in php
Рекомендации по теме
Комментарии
Автор

Thank You so much for valuable and knowledgeable video ❤❤❤

ShoobhFACTS