Most voted "procedural" questions
7 questions
Sort by count of
-
60
votes2
answers2892
viewsPHP mixes object-oriented codes and procedural language?
I am learning PHP, and by the example I have seen on the internet there is a mixture in the coding of programs, of object orientation and structured procedures. Is that really common or am I…
-
12
votes1
answer2664
viewsWhat are the characteristics of structured programming?
I would like to know what are the characteristics that define the paradigm of structured programming, and what is the difference of this paradigm with the paradigm of procedural programming? Both…
-
5
votes1
answer759
viewsPHP with DAO + mysqli
DAO necessarily needs to be a class? Or I could create methods within a file. php without encapsulation of a class? If not possible, what is the name of the classless DAO (name of some pattern equal…
-
4
votes0
answers52
viewsObject and Procedural Oriented Programming in PHP at the same time
Guys I have a PHP system that I have been developing for over a year. It was written practically procedural, because I adapted better, and I find it simpler to work. My question is the following:…
-
1
votes1
answer38
viewsChange from day to month when adding minutes: Why does it occur? How to fix it?
I wonder why in the code below, after adding the 15 minutes, there is a change in the order of day and month. What’s the logic behind it, if that’s what I’m thinking. Plus, how to fix this in PHP…
-
1
votes2
answers96
viewsGuidelines for using object or procedural guidance in Python and PHP
I am studying PHP and Python and I am feeling a huge difficulty, not in relation to concepts, after all they are independent of language, what is making hard the study is how PHP implements the…
-
0
votes1
answer52
viewsPython procedure for Problem class
I’m having trouble turning a function into a python class: from bs4 import BeautifulSoup from selenium import webdriver import html2text # driver.page_source = driver.get())# def getPEP(strg):…