If $due_date contains a DateTime object, $due_date_diff will contain
c. a DateInterval object
Explanation:
- The DateInterval class ¶ represents a date interval.
- A date interval stores either a fixed amount of time (in years, months, days, hours etc) or a relative time string in the format that DateTime's constructor supports.
- The diff method is just as easy to use, but provides an extra piece of information: total days. This is important because when using the DateTime object to find a difference, we have a source and destination date, and therefore we can reduce the units of time into larger denominations. However, having the total number of days in between is a valuable piece of information.
- The PHP DateTime class has three methods that work with a DateInterval object:
- add
- sub
- diff
Properties
- y :Number of years.
-
m :Number of months.
-
d :Number of days.
-
h :Number of hours.
-
i :Number of minutes.
-
s :Number of seconds.
Answer: designing the facility with architects.
Explanation: The programming phase of a facility construction has nothing to do with the architectural design of the facility. The programming phase usually involves ; Determining the needs of intended or impending users, estimated construction cost, required area for the project. The programming phase may involve individual or joint questioning or fact finding from the intended occupants or user group to determine their needs in terms of systems and infrastructure, security and so on. It also gets intended occupants informed on the features, use and design of the intended project. It also examines the effect of the project on structures previously existing in the environment.
Answer:
-i
Explanation:
is the answer of that question
Answer:
INPUT "What is the amount of rupees you want converted into paisa"; rupees
paisa = rupees*100
PRINT paisa
Explanation:
done in QBASIC
the semicolon in the 1st line makes the question have a ? at the end. the rupees key word in the 1st line saves the input as a variable
then the second line multiplies by 100 since there are 100 paisa in 1 rupee
Geographic segmentation is particularly important for international businesses: True.
<h3>What is an international trade?</h3>
International trade can be defined as a strategic process which typically involves the exchange (buying and selling) of goods, capital, and services (economic transactions) between two or more countries or across geographical borders.
<h3>What is
geographic segmentation?</h3>
Geographic segmentation can be defined as a process that typically involves a business firm dividing its target market (consumers or customers) based on geographical location, in order to enable it tailor its marketing efforts efficiently and effectively.
Read more on geographic segmentation here: brainly.com/question/18103744
#SPJ1