|
|
|
PHP Tutorial
|
PHP Comparison Objects
In this current tutorial we will study about the various ways of comparing two objects. There are several ways are provided in PHP to compare two objects of class (same or different)like ==,=== etc operators are present to compare two objects.
View Rating |
|
|
PHP Tutorial
|
PHP Object Reference
In this current tutorial we will study about what is object and what is reference? how to create object in PHP, how to give reference to another object etc. In PHP a reference is an alias and an object variable does not contain the object rather it contains the identifier and it allows to access the actual object.
View Rating |
|
|
PHP Tutorial
|
PHP Final Keyword
In this current tutorial we will study about final keyword, final keyword helps us to put some constraint on classes and it's methods. Using final keyword a class can not be inherited and a method can not be overridden.
View Rating |
|
|
PHP Tutorial
|
PHP OOP Namespace
The term namespace is very much common in OOP based language, basically it is a collection of classes, objects and functions. Namespace is one of the major change in PHP 5.3.0. Naming collision of classes, functions and variables can be avoided.
View Rating |
|
|
PHP Tutorial
|
PHP Observer Method
In this pattern one object make itself observable and other objects observed it. The object which is observed is called subject. When the observable object changes it passes some message to the observer and the observer uses those message according to their need..
View Rating |
|
|
PHP Tutorial
|
PHP Form Part-13
In the previous tutorial, we got the enough knowledge how to assign the values in an array. But the question is raise that how to get those values? There are several ways to get those values in the browser.
View Rating |
|
|
PHP Tutorial
|
PHP Form Part-11
Method One ? Value between the round brackets:
In the first method, putting the values in between the parenthesis or array. Here, we are going to give the name to the array is $days. Between the parenthesis array() we have to put our values between the double codes and separated by the comma.
View Rating |
|
|
PHP Tutorial
|
PHP FORM Part-10
An array is a storage area of multiple values in PHP Program. Where you can add or remove multiple values with the help of array. In simple variable we can store only value at one time but in array variable we can store multiple values.
View Rating |
|
|