Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
55,839 results
Which one is better for splitting strings in PHP? explode() is great when you need to split a string by a delimiter, like a comma or ...
75 views
1 year ago
Which PHP functions are best for string manipulation? Use substr for cutting strings into smaller parts. Consider str_replace ...
44 views
11 months ago
About CampusX: CampusX is an online mentorship program for engineering students. We offer a 6-month long mentorship to ...
100 views
5 years ago
Which is better for replacing strings in PHP, str_replace or preg_replace? str_replace is faster and more efficient for simple ...
50 views
Why switch from `rand()` to `mt_rand()` for random numbers? ☀️ `mt_rand()` uses the Mersenne Twister algorithm, which is ...
65 views
php,php tutorial,php tutorial for beginners,php course,learn php,php for beginners,intro to php,php programming,php project ...
1 view
4 years ago
In this PHP and MySQL training course you'll learn all of the major concepts that PHP beginner developers need to know.
9 views
8 years ago
http://filmsbykris.com For help: http://filmsbykris.com/irc FaceBook: ...
969 views
12 years ago
Warmup cycle - Lesson 3 Let's learn what is a variable in PHP. We will see Integer (numeric value) and string value. How to add ...
2,247 views
9 years ago
PHP String Functions (Part 1) strlen(string) - This function counts total no of characters, including numbers and white spaces in the ...
2,155 views
11 years ago
In this video, we will explore the essential techniques for converting strings to arrays in PHP. Whether you're working with user ...
4 views
755 views
String method in php this is complete #PHP course from beginner to advace level students. this course full free with maltiple ...
5 views
7 years ago
Demonstration of some PHP string methods: strlen, str_word_count, strpos, strtoupper, strtolower, ucfirst, ucwords, str_replace, ...
32 views
Why use str_pad for string formatting in PHP? str_pad helps you format strings to a specific length. It can pad strings with ...
In this video, we'll explore a fundamental aspect of string manipulation in PHP: checking if one string starts with another. Whether ...
6 views
7 months ago
Which is better for string replacement in PHP? str_replace is simpler, faster, and ideal for straightforward replacements.
221 views
Why use stristr over strpos? ⚱️ stristr performs a case-insensitive search, while strpos is case-sensitive. ⚱️ stristr returns the ...
56 views
How to handle multibyte strings in PHP? Use mbstring functions for multibyte strings. They handle characters beyond ASCII.
23 views
When to use isset and when to use !empty in PHP? 🏍️ isset() checks if a variable is declared and is not null, but it will return true ...
105 views