W3schools Tutorials & Courses

Learn programming for free with our latest online learning resources with simple examples.

New & Trending Tutorials

PHP

PHP Access Modifiers

Access modifiers change the visibility of class members and determine which parts of the program have access to them. This tutorial describes the use of PHP access modifiers with examples.

PHP

PHP Inheritance

This tutorial talks about the notion of inheritance in PHP OOP, where we will see Inheritance and the Protected Access Modifier, Overriding Inherited Methods, and prevent class inheritance or method overriding by using the keyword final.

PHP

PHP Error Handling

Error handling is a method of capturing an error thrown by a program and applying appropriate action to resolve that error. This tutorial explains the concept of error handling in PHP.

TensorFlow

TensorFlow Architecture

The TensorFlow architecture makes its systems efficient, scalable, and flexible enough to run on large data centers and even mobile phones. This tutorial will explain the TensorFlow architecture and its various components in detail.

PHP

What is stdClass in PHP?

stdClass is a handy feature provided by PHP to create a regular class. It is a predefined 'empty' class used as a utility class to cast objects of other types. In this tutorial, PHP stdClass is explained with various examples.