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
1,135 results
How to ensure a string is a valid number in PHP? Validating strings is crucial in PHP applications. ctype_digit() checks if a ...
16 views
11 months ago
What is ctype_graph in PHP and why use it? ctype_graph helps you filter strings to allow only visible characters. It excludes ...
15 views
When should I use ctype_upper in PHP? You should use `ctype_upper()` to check if all characters are uppercase. This is ...
2 views
In this video, we'll explore a fundamental aspect of string manipulation in PHP: checking if one string starts with another. Whether ...
6 views
8 months ago
How does PHP internally represent strings? I hope you found a solution that worked for you :) The Content is licensed under ...
0 views
7 months ago
How to validate hexadecimal strings in PHP? Hexadecimal strings are used in color codes and encryption. ctype_xdigit() ...
37 views
How to convert Julian dates in PHP using jdtogregorian? You can use jdtogregorian() to convert Julian dates. This is helpful ...
9 views
10 months ago
When should you use mysqli_stmt_attr_set()? Using mysqli_stmt_attr_set() helps optimize prepared statements. It allows ...
8 views
In this video, we'll explore the essential process of converting a byte array to a string in PHP. Whether you're working with binary ...
1 view
4 months ago
Why is jdmonthname() crucial for date conversions in PHP? jdmonthname() is essential for converting Julian dates. It returns ...
How can mysqli_fetch_field() improve your PHP queries? Use `mysqli_fetch_field()` to get details about the fields in your query ...
7 views
When should I use mysqli_stmt_get_result() in PHP? 🛎️ You should use mysqli_stmt_get_result() when working with prepared ...
17 views
Ready to master variables in php? This comprehensive guide covers everything you need to know! In this video, you'll discover: ...
5 views
How can ctype_punct() improve your PHP validation? Use ctype_punct() to check if a string has punctuation. It helps ensure ...
11 views
Why is mysqli_real_escape_string critical for PHP? When handling user input, security is a major concern.
32 views
When should you use mysqli_get_client_stats() in PHP? Use this function when you need to monitor detailed stats about ...
Why should I use mysqli_stmt_bind_param()? mysqli_stmt_bind_param() binds variables to prepared statements. This is ...
84 views
How does mysqli_fetch_lengths() improve database handling? mysqli_fetch_lengths() gives you the length of each column.
How can you get result metadata with PHP? When using prepared statements, you often need to know the data types of your ...
14 views
1 year ago
How to check request variables with filter_has_var()? ♟️ This function checks if a variable exists in the request. ♟️ But not all ...