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
75,328 results
What's the quickest way to debug PHP code? Using error_reporting can show all errors quickly. Combine it with ...
1,441 views
1 year ago
Why choose trait over interface in PHP? ⛔ A trait allows you to reuse code across classes without needing inheritance.
596 views
Why avoid phpinfo in production? phpinfo displays sensitive server information publicly. ini_get only retrieves specific ...
447 views
Which PHP loop is better: foreach or while? Use foreach for arrays or collections when the structure is fixed. while is better ...
467 views
When to use explode or implode in PHP? explode is used to break a string into an array based on a delimiter. implode is ...
102 views
Why prefer switch over if-else in PHP? Switch can be more efficient when comparing a single variable against many values.
92 views
When should you use output buffering with ob_start()? Use output buffering when you need to control what gets sent to the ...
138 views
Should you use die() or exit() in PHP? die() and exit() are essentially the same, both stop script execution. The real ...
105 views
How to prevent PHP database deadlocks with concurrent writes? Always use consistent locking strategies for database writes.
How to control drill milling with PHP? 📽️ You can use PHP to send commands to hardware. 📽️ Fetch and process sensor data ...
62 views
Why should you care about PHPs memory management? PHPs memory management affects your applications performance.
643 views
How do you convert an array to JSON in PHP? You can use the function json_encode() to convert an array. This function ...
66 views
Why is eval better than include in PHP? eval() can execute dynamic PHP code from a string, offering flexibility. include() ...
484 views
Ready to build modern PHP apps using a clean, lightweight MVC framework? In this beginner-friendly screencast, we dive into ...
136 views
7 months ago
Why does PHP use $ as variable prefix? The dollar sign `$` tells PHP that what follows is a variable. But this was not just for ...
504 views
Whats the Secret to OpCache Optimization? OpCache stores precompiled PHP bytecode to speed up script execution.
139 views
How to dynamically adjust dates with PHP DateTime::modify? Use DateTime::modify to change a DateTime object by adding or ...
79 views
Quick tutorial on building a PHP app using Fat-Free Framework! Learn how to connect to a MariaDB database and display ...
152 views
8 months ago
Why Should You Implement Yii2 Coding Standards for PHP Efficiency? 🗄️ Yii2 coding standards ensure consistency and ...
34 views
Which PHP extension handles async HTTP requests? The Swoole extension is the best way to handle asynchronous HTTP ...
804 views