PHP Procedural Method or orientation Object [closed]

1
  • Which of the two are secure?
  • I can procedural only work on Procedural
  • Pros and Cons of Procedural
asked by anonymous 09.10.2017 / 21:05

1 answer

1
Both are safe. Object-oriented programming, in addition to all its features such as inheritance, polymorphism and so on, helps you keep your programming logic well applied. Your code "becomes part of the real world," where your classes will be treated as Entities, their methods / functions will be treated as Actions of these Entities, their attributes / properties will be like Qualities of these Entities. On the other hand the procedural code is faster to implement a simple system with single Crude where there is no need for treatments. There are also frameworks such as Laravel, CodeIgniter, Cake PHP among others that help you in object-oriented programming and give you many ready-to-use code options. It is only the necessity of using each of them. Hope this helps. Thanks.

    
09.10.2017 / 21:15