InterviewSolution
Saved Bookmarks
| 1. |
Which one of the following statements should be used to disable the use of two classes administrator and janitor?(a) disable_classes = “administrator, janitor”(b) disable_classes = class administrator, class janitor(c) disable_classes = class “administrator”, class “janitor”(d) disable_class = class “administrator”, class “janitor”The question was posed to me in an online quiz.Enquiry is from Website Security using PHP topic in section File and Session Handling in PHP of PHP |
|
Answer» RIGHT choice is (a) disable_classes = “ADMINISTRATOR, janitor” Explanation: There may be CLASSES INSIDE the libraries that you’d rather not make AVAILABLE. You can prevent the use of these classes with the disable_classes directive. |
|