ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

175,364 results

Kai Lentit
Interview with Senior PHP Developer

PHP programming language Interview with a PHP developer with Paul Ron - aired on © The PHP. No Music Programmer humor ...

6:12
Interview with Senior PHP Developer

406,366 views

4 years ago

Turbo Learn PHP
What’s the quickest way to debug #php code? Master #php Debugging in Seconds The Ultimate Tip!

What's the quickest way to debug PHP code? Using error_reporting can show all errors quickly. Combine it with ...

0:17
What’s the quickest way to debug #php code? Master #php Debugging in Seconds The Ultimate Tip!

1,437 views

1 year ago

Turbo Learn PHP
Why choose trait over interface in PHP? Trait vs Interface in #php – Which One Should You Use?

Why choose trait over interface in PHP? ⛔ A trait allows you to reuse code across classes without needing inheritance.

0:20
Why choose trait over interface in PHP? Trait vs Interface in #php – Which One Should You Use?

595 views

1 year ago

Turbo Learn PHP
Which #php loop is better: foreach or while? foreach vs while in PHP: Which Loop Is Smarter?

Which PHP loop is better: foreach or while? Use foreach for arrays or collections when the structure is fixed. while is better ...

0:24
Which #php loop is better: foreach or while? foreach vs while in PHP: Which Loop Is Smarter?

467 views

1 year ago

Turbo Learn PHP
When should you use output buffering with ob_start()? Unlock #php #secrets with Output Buffering!

When should you use output buffering with ob_start()? Use output buffering when you need to control what gets sent to the ...

0:30
When should you use output buffering with ob_start()? Unlock #php #secrets with Output Buffering!

138 views

1 year ago

Turbo Learn PHP
Why prefer switch over if-else in PHP? switch vs if-else in #php – Which One Wins Performance?

Why prefer switch over if-else in PHP? Switch can be more efficient when comparing a single variable against many values.

0:17
Why prefer switch over if-else in PHP? switch vs if-else in #php – Which One Wins Performance?

92 views

1 year ago

Turbo Learn PHP
How to prevent #php database deadlocks with concurrent writes? avoid #php deadlock efficiently

How to prevent PHP database deadlocks with concurrent writes? Always use consistent locking strategies for database writes.

0:46
How to prevent #php database deadlocks with concurrent writes? avoid #php deadlock efficiently

105 views

1 year ago

Turbo Learn PHP
Should you use die() or exit() in PHP? #php die() vs exit(): Which One Should You Use?

Should you use die() or exit() in PHP? die() and exit() are essentially the same, both stop script execution. The real ...

0:15
Should you use die() or exit() in PHP? #php die() vs exit(): Which One Should You Use?

105 views

1 year ago

ojamboshop
Create Your First PHP App with Fat-Free Framework in 60 Seconds!

Quick tutorial on building a PHP app using Fat-Free Framework! Learn how to connect to a MariaDB database and display ...

1:15
Create Your First PHP App with Fat-Free Framework in 60 Seconds!

152 views

8 months ago

Turbo Learn PHP
Whats the #secret to #opcache optimization? boost your #php #performance instantly with #opcache

Whats the Secret to OpCache Optimization? OpCache stores precompiled PHP bytecode to speed up script execution.

0:21
Whats the #secret to #opcache optimization? boost your #php #performance instantly with #opcache

138 views

1 year ago

Turbo Learn PHP
How do you convert an array to JSON in PHP? Convert Arrays to JSON in #php Like a Pro!

How do you convert an array to JSON in PHP? You can use the function json_encode() to convert an array. This function ...

0:29
How do you convert an array to JSON in PHP? Convert Arrays to JSON in #php Like a Pro!

66 views

1 year ago

Turbo Learn PHP
When to use explode or implode in PHP? explode vs implode in #php – Which One Is Faster?

When to use explode or implode in PHP? explode is used to break a string into an array based on a delimiter. implode is ...

0:22
When to use explode or implode in PHP? explode vs implode in #php – Which One Is Faster?

102 views

1 year ago

Turbo Learn PHP
Why avoid phpinfo in production? phpinfo vs ini_get: #hidden #php Config Secrets!

Why avoid phpinfo in production? phpinfo displays sensitive server information publicly. ini_get only retrieves specific ...

0:32
Why avoid phpinfo in production? phpinfo vs ini_get: #hidden #php Config Secrets!

447 views

1 year ago

Turbo Learn PHP
Why should you avoid using eval in PHP? eval vs include in #php – Which One is Safe for #dynamic

Why should you avoid using eval in PHP? eval can execute any PHP code given to it, which opens the door for code injection ...

0:16
Why should you avoid using eval in PHP? eval vs include in #php – Which One is Safe for #dynamic

99 views

1 year ago

Turbo Learn PHP
Why should you care about PHPs memory management? Unlock #php Memory Management Secrets!

Why should you care about PHPs memory management? PHPs memory management affects your applications performance.

0:30
Why should you care about PHPs memory management? Unlock #php Memory Management Secrets!

643 views

1 year ago

Turbo Learn PHP
What are the best practices for using #php with REST APIs? Mastering REST APIs in #php Like a Pro!

What are the best practices for using PHP with REST APIs? Using proper HTTP methods like GET, POST, PUT, DELETE is key.

0:46
What are the best practices for using #php with REST APIs? Mastering REST APIs in #php Like a Pro!

100 views

1 year ago

Turbo Learn PHP
Which #php function checks duplicate values efficiently? Mastering Duplicate Checks in PHP!

Which PHP function checks duplicate values efficiently? You can use `array_count_values()` to check for duplicates.

0:21
Which #php function checks duplicate values efficiently? Mastering Duplicate Checks in PHP!

131 views

1 year ago

Rod Tech Talk
Should You Learn PHP Programming in 2021 ?

Free 7 Step Freelance SQL Developer Guide: https://digilinksolutions.net/lp/guide/ PREMIUM COURSES ▻ 30 Day Freelance ...

11:20
Should You Learn PHP Programming in 2021 ?

1,745 views

5 years ago

Turbo Learn PHP
Why is eval better than include in PHP? eval vs include: #php Code Execution #secrets You Missed!

Why is eval better than include in PHP? eval() can execute dynamic PHP code from a string, offering flexibility. include() ...

0:18
Why is eval better than include in PHP? eval vs include: #php Code Execution #secrets You Missed!

482 views

1 year ago

Turbo Learn PHP
What is the #purpose of the #php ini_set function? Unlock PHPs ini_set A #hidden Gem!

What is the purpose of the PHP ini_set function? The ini_set function changes PHP settings while the script runs. BUT not all ...

0:18
What is the #purpose of the #php ini_set function? Unlock PHPs ini_set A #hidden Gem!

34 views

1 year ago

John Hunt
Two minute programming: Dependency Injection in PHP

Learn what Dependency Injection is in PHP - it's not as hard as it sounds! This is my first 2 minute programming video on YouTube ...

2:06
Two minute programming: Dependency Injection in PHP

16,127 views

9 years ago

Turbo Learn PHP
How can #php #generators enhance #programming efficiency? unlocking phps natural power #exploring

How can PHP generators enhance programming efficiency? PHP generators enable you to iterate over large datasets without ...

0:24
How can #php #generators enhance #programming efficiency? unlocking phps natural power #exploring

21 views

1 year ago

Turbo Learn PHP
How to manage #php database connection overload? unleash #php power efficient database connection

How to manage PHP database connection overload? PHP applications face performance issues due to frequent database ...

0:47
How to manage #php database connection overload? unleash #php power efficient database connection

86 views

1 year ago

Turbo Learn PHP
How to control drill milling with php? optimize your #php scripts for adjustable drill milling

How to control drill milling with PHP? 📽️ You can use PHP to send commands to hardware. 📽️ Fetch and process sensor data ...

0:56
How to control drill milling with php? optimize your #php scripts for adjustable drill milling

62 views

1 year ago

Turbo Learn PHP
How can you implement rate limiting in #php API? Master #php Implement Rate Limiting Like a Pro!

How can you implement rate limiting in PHP API? Rate limiting controls how many requests a user can make. It helps ...

0:29
How can you implement rate limiting in #php API? Master #php Implement Rate Limiting Like a Pro!

526 views

1 year ago