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
72,118 results
Quick tutorial on building a PHP app using Fat-Free Framework! Learn how to connect to a MariaDB database and display ...
144 views
6 months ago
What's the quickest way to debug PHP code? Using error_reporting can show all errors quickly. Combine it with ...
1,119 views
1 year ago
A brief introduction to PHP, and some examples of PHP code. Includes links to the PHP Documentation and other resources for ...
6,064 views
What are the best PHP programming tips? Write clean and readable code to enhance maintainability. Use frameworks like ...
17 views
How can Xdebug profile PHP apps? Xdebug profiling can show detailed data on code execution. It tracks function calls, ...
325 views
Why choose trait over interface in PHP? ⛔ A trait allows you to reuse code across classes without needing inheritance.
514 views
Why avoid phpinfo in production? phpinfo displays sensitive server information publicly. ini_get only retrieves specific ...
445 views
Why does PHP use $ as variable prefix? The dollar sign `$` tells PHP that what follows is a variable. But this was not just for ...
495 views
11 months ago
Why use traits in PHP? Traits help to avoid code duplication. They allow you to reuse methods across different classes.
71 views
Why Should You Embrace Yii2 Coding Standards? Yii2 coding standards ensure uniformity and clarity in your codebase.
37 views
Why is using require sometimes better than include in PHP? Require ensures that the file is included, otherwise, the script will ...
109 views
What happens if include fails in PHP? include will generate a warning but continue the script execution. require will generate ...
43 views
How can you implement recursion in PHP efficiently? ✨ Use recursion for problems that can be broken down into smaller, similar ...
117 views
What is the purpose of the PHP ini_set function? The ini_set function changes PHP settings while the script runs. BUT not all ...
34 views
In this short, we demonstrate how to build a simple PHP MVC app using PDO for secure database access with MariaDB.
131 views
4 months ago
Whats the Secret to OpCache Optimization? OpCache stores precompiled PHP bytecode to speed up script execution.
126 views
Which functions can help with date manipulation? PHP provides several built-in functions for date manipulation.
203 views
When should you use output buffering with ob_start()? Use output buffering when you need to control what gets sent to the ...
... ensuring that developers have access to the best practices and guidelines for PHP programming. Learn how you can contribute ...
183 views
How can PHP generators enhance programming efficiency? PHP generators enable you to iterate over large datasets without ...
21 views