Featured Posts

Writing Website Scrapers in PHPWriting Website Scrapers in PHP This article discusses about how to write a website scraper using PHP for web site data extraction. The concepts taught can be applied and programmed in Java, C#, etc. Basically any language that has a...

Readmore

12 common programming mistakes to avoid12 common programming mistakes to avoid Programming is an art and science and like all art and science the only way to learn is from mistakes. I have made many... and I would like to share with you the mistakes that I have made over my journey...

Readmore

7 habits of highly effective freelance programmers7 habits of highly effective freelance programmers I have developed these based on my freelancing experience. Though I have discontinued freelancing, but would like to share my practices with you. These are basic practices and have been developed over...

Readmore

  • Prev
  • Next

PHP5 OOPS Tutorials – Polymorphism

Posted on : 11-02-2008 | By : admin | In : PHP, PHP Class Examples, PHP5 OOPS Tutorials

11

In this tutorial we will learn the following:

  • Meaning of Polymorphism
  • Why method polymorphism cannot be achieved in PHP
  • PHP 5 Object Polymorphism

PHP5 Tutorials – Abstract Class and Interface

Posted on : 03-02-2008 | By : admin | In : PHP, PHP5 OOPS Tutorials

6

In this post, we learn what is an abstract class and an interface.

  • What is an Abstract Class?
  • Private methods cannot be Abstract
  • What is an Interface?
  • Defining an Interface
  • Abstract Class v/s Interface

12 common programming mistakes to avoid

Posted on : 16-11-2007 | By : admin | In : Programming

16

Programming is an art and science and like all art and science the only way to learn is from mistakes. I have made many… and I would like to share with you the mistakes that I have made over my journey with development.

PHP Script to print nested array

Posted on : 16-11-2007 | By : admin | In : PHP, PHP Code Examples

5

Here is a script that will allow you to print a nested array upto any level. Can I request you to please review this and let me know how this can be further optimized.

PHP5 Tutorial – Inheritance in PHP5

Posted on : 15-11-2007 | By : admin | In : PHP, PHP Tutorials, PHP5 OOPS Tutorials

2

In the tutorial we will understand what is Inheritance in general and how to inherit classes in PHP5.

Definition of Inheritance:

Inheritance is the mechanism of deriving a new class from an existing class. It allows a sub-class / child class to share/inherit the attributes and behaviors of a base-class or parent class. These inherited attributes and behaviors are usually modified by means of extension.

PHP5 Tutorial – Defining Class Constants

Posted on : 15-11-2007 | By : admin | In : PHP, PHP Tutorials, PHP5 OOPS Tutorials

1

In PHP4 the only constants that we would declare were global constants. In PHP5 it is possible to define a class level constant. These constants are specific to the class and hence don’t clutter the global level constant space.

PHP5 Tutorial – instanceOf Operator Explained

Posted on : 15-11-2007 | By : admin | In : PHP, PHP Tutorials, PHP5 OOPS Tutorials

1

PHP5 introduces a new operator by the name of instanceOf. instanceOf is used to check if two objects passed as operands belong to the same class. This check can also happen when an object is compared with a class name.

In PHP4 a similar functionality existed with a method is_a(), which has been replaced by the instanceOf operator in PHP5.

PHP5 Tutorial – $this variable explained

Posted on : 14-11-2007 | By : admin | In : PHP, PHP Tutorials, PHP5 OOPS Tutorials

4

$this variable is a pointer to the object making the function call. $this variable is not avialable in static methods. We will learn more about static methods in the next series of tutorials.

PHP Script to Extract Email Address from any text

Posted on : 14-11-2007 | By : admin | In : PHP, PHP Code Examples, Programming

6

I have developed a function that you can embed in your PHP applications that will help you extract email addresses from a given piece of text.

I have tested this on a string of (actually 4 – 5 paragraphs) text and this has performed very well.

Please feel free to use this code in your applications and let me know if you face any issues.

Stack Implementation in PHP5 – Stack Class

Posted on : 14-11-2007 | By : admin | In : PHP, PHP Class Examples, PHP Tutorials

1

Refer to the code below which is a PHP5 Stack Class – an implementation of Stacks. You are free to use it in your programs.