Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using PHP user-defined functions and if..else statements, write the code to do the following: 1. Define a function named: full_day which takes one parameter: $d
Using PHP user-defined functions and if..else statements, write the code to do the following:
1. Define a function named: "full_day" which takes one parameter: "$d" to store the short name of the day.
For example "Fri" for "Friday", "Sat" for "Saturday" and so on.
2. The function prints the fullname of the day if the passed parameter = "Fri" or "Sat", Otherwise it will print "Weekdays".
Assume you call the function and pass the value "Fri" to the function, then it will give the following output:
Friday
Assume you call the function and pass the value "Mon" to the function, then it will give the following output:
Monday
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started