answersLogoWhite

0

Is PHP object oriented

Updated: 8/18/2019
User Avatar

Wiki User

14y ago

Best Answer

Yes - 'advanced' PHP programming uses Object Oriented Programming (OOP).

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is PHP object oriented
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is php plus plus?

PHP++ is an object-oriented version of the PHP programming language. ++ is used in programming to increment a variable by one so it means an improved version of PHP.


Is PHP a completely object oriented language?

It depends on which language to you , is "Not" completely Object Oriented. To us PHP is a server scripting language like any other language ASP,CGI,PERL each. Orientation is the views of the users of the engines. It is not the view at the point of source or origin.


Is the object oriented programming in php useful?

Object orientation is not a concept related to usefull ness, it is a concept totally related to the software design. When we focused on software design we went for object orientation.


Who developed PHP?

PHP was originally created by Rasmus Lerdorf in 1994. Rasmus Leodorf developed PHP to replace a set of scripts he had written in PERL. It was developed to be one of the first, and still one of the most powerful Object-Oriented web scripting engines.


What are the differences between Java OOP and PHP OOP?

JAVA is an Object Based Programming Language. it doesn't provide multiple inheritance and operator overloading. while Object Oriented Lanuages provides both.


Is c is complete object oriented programming language?

No. C is not object oriented. C++ is object oriented.


Does Java Script follow Object Oriented paradigm or not?

JavaScript does follow the object oriented paradigm. It offers extension, encapsulation, and most of the other central tenets of object orientation. That said, JavaScript isn't object-oriented in the same way that most other OOP languages are. It's prototype based, rather than class based like Java, C#, or PHP. This means that it can be a bit confusing at first for individuals coming from those (or similar) backgrounds.


What is the distinct difference between object oriented concept and object oriented programming?

Object oriented concepts are a generalisation of the object oriented principals (encapsulation, inheritance, polymorphism and abstraction) without specifying a particular implementation of those principals. Object oriented programming is the application of those principals through an object oriented programming language.


What object oriented system development?

What is object-oriented systems development


What is Object Oriented System Development?

What is object-oriented systems development


Describe all the features of PHP?

This is fairly hard to do. PHP has nearly endless possibilities.PHP can be an Object-Oriented or Function-Oriented programming language. Though PHP is mostly used for web design, it is possible to use PHP outside of the internet, but this is complicated.PHP can do almost anything from performing simple arithmetic calculations, to providing uses with information, user accounts, and more. You can edit pictures with PHP, look up IP addresses, and handle different strings. You can even pull and alter information of mySQL databases!I highly recommend PHP, but it cannot be used if you don't have PHP installed. PHP is a free software, and can be download from php.net. You can use PHP on the internet though, as long as it is installed on that particular web server. Most free hosting websites already have PHP installed.


Is c plus plus is pure object oriented?

No. C is not object-oriented, it is a procedural language.C++, while object-oriented, is not purelyobject-oriented. One of the requirements for a pure object-oriented language is that everything is an object. C++ still has primitive data types (int, long, double, etc.), and so is not purely object-oriented.