What are the INI settings?
When tracking upload progress with sessions, the values of 2 INI settings are needed to determine the key in $_SESSION of the upload progress data. What are the INI settings? (Choose 2)A . session.upload_progress.fileB . session.upload_progress.keyC . session.upload_progress.prefixD . session.upload_progress.freqE . session.upload_progress.nameView AnswerAnswer: C, E
What is the result of the following code?
What is the result of the following code? define('PI', 3.14); class T { canst Pl = Pl; } class Math { canst Pl = T::PI; } echo Math::PI;A . Parse errorB . 3.14C . PlD . T::PIView AnswerAnswer: B
Which MIME type is always sent by a client if a JPEG file is uploaded via HTIP?
Which MIME type is always sent by a client if a JPEG file is uploaded via HTIP?A . image/jpegB . image/jpgC . image/pjpegD . Depends on the client systemView AnswerAnswer: D
When using password_hash() with the PASSWORD_DEFAULT algorithm constant, which of the following is true? (Choose 2)
When using password_hash() with the PASSWORD_DEFAULT algorithm constant, which of the following is true? (Choose 2)A . The algorithm that is used for hashing passwords can change when PHP is upgraded.B . The salt option should always be set to a longer value to account for future algorithm requirements.C ....
What is the output of the following code?
What is the output of the following code? echo "22" + "0.2", 23 . 1;A . 220.2231B . 22.2231C . 22.2,231D . 56.2View AnswerAnswer: B
Which of the following statements is NOT correct?
Which of the following statements is NOT correct?A . Only methods can have type hintsB . Type hints can be optionalC . Type hints can be referencesView AnswerAnswer: A
Given a PHP value, which sample shows how to convert the value to JSON?
Given a PHP value, which sample shows how to convert the value to JSON?A . $string= json_encode($value);B . $string= Json::encode($value);C . $json = new Json($value); $string= $json-> toString();D . $value= (object) $value; $string= $value-> toJson();View AnswerAnswer: A
What is "instanceof" an example of?
What is "instanceof" an example of?A . a booleanB . an operatorC . a functionD . a language construct E: a class magicView AnswerAnswer: B
What function is best suited for extracting data from a formatted string into an array?
What function is best suited for extracting data from a formatted string into an array?A . fgetcsvB . sscanfC . sprintfD . strtokView AnswerAnswer: C
echo isset($c)?
What is the output of the following code? $a= 'a'; $b = 'b'; echo isset($c)? $a.$b.$c: ($c = 'c').'d';A . abcB . cdC . 0dView AnswerAnswer: B