can anyone explain oops concept in php or give website to
learn this concept clearly?
Answers were Sorted based on User's Feedback
Answer / sanjeev
Yes we can use oops concept in PHP ,its slow down the
execution of code but gives the reusability of code.
| Is This Answer Correct ? | 20 Yes | 7 No |
Answer / mansur
u can refer here
http://in.php.net/zend-engine-2.php
| Is This Answer Correct ? | 3 Yes | 5 No |
What are the features and advantages of object-oriented programming in php?
1. Create student database. 2. First page should display the students available in the database. There should be add, edit and delete buttons. 3. There should be option to search students by name, code, date of joining, department or combination of these. 4. Should have an add/edit screen. Add and Edit should be handled in the same page. 5. Delete should ask for confirmation before deleting the actual record. 6. Validation should be done in JavaScript as well as php.
Why php is also called as scripting language?
Write a program in php to check whether a number is prime or not?
display selected value in dropdown list through javascript without page refresh
Do I need to install php after xampp?
Give any ten basic functions in PHP?
Why do we use htaccess and where?
Is php harder than javascript?
So if md5() generates the most secure hash, why would you ever use the less secure crc32() and sha1()?
How many types of array supported in php?
What is happening in the following code $objA = new A(); // A is a class $objB = $objA;