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
3,503 results
The IEEE floating point standard made it difficult to count money on a computer, PHP made it impossible to display a result.
1,256 views
10 years ago
Software Engineering: Generating presentation elements with Javascript vs PHP Helpful? Please support me on Patreon: ...
12 views
3 years ago
When is PDO better than MySQLi? Use PDO if you need flexibility for multiple databases. PDO handles prepared statements ...
242 views
1 year ago
Which PHP method is best for making HTTP requests? curl_exec() is more flexible and powerful for complex HTTP requests.
368 views
When should you use array_push vs array_merge? array_push is designed to add one or more elements to the end of an array ...
17 views
10 months ago
When should I use array_diff vs array_udiff in PHP? ⛴️ Use array_diff for basic comparison of values between arrays.
35 views
11 months ago
When to use require_once vs include_once in PHP? ⛹️ require_once ensures that a file is included once and causes a fatal ...
134 views
When to use json_encode() vs serialize() in PHP? json_encode() is better for exchanging data between different languages or ...
431 views
Why is eval better than include in PHP? eval() can execute dynamic PHP code from a string, offering flexibility. include() ...
464 views
Hello everyone, Good morning to you all. This is our 6th Tips of the Day (3 Most Notable Differences Between PHP vs Node.js).
11 views
Software Engineering: PHP Post vs JavaScript Ajax Request Helpful? Please support me on Patreon: ...
2 views
When should I use global or static variables in PHP? Use global variables when you need to share data between different ...
187 views
Which is better: mysqli_fetch_assoc or mysqli_fetch_object? mysqli_fetch_assoc returns an associative array, which makes ...
25 views
Software Engineering: Checking at javascript level vs checking in PHP? Helpful? Please support me on Patreon: ...
3 views
Why use json_encode() vs json_decode() in PHP? 🗓️ json_encode() is used for converting PHP data (like arrays and objects) ...
107 views
Why use mb_strtoupper instead of strtoupper in PHP? ⛴️ strtoupper works well for single-byte encodings, but can break ...
48 views
Why should I prefer mysqli_query over mysql_query? mysql_query() is deprecated and no longer supported in modern PHP ...
105 views
Why should you choose hrtime over microtime for benchmarks? 🏍️ Hrtime provides nanosecond precision, which is crucial for ...
68 views
When to choose json_encode over serialize in PHP? json_encode converts data into a JSON string format, ideal for APIs or ...
159 views
When to use array_splice instead of array_slice in PHP? array_splice removes elements from the array and optionally replaces ...
8 views