Correct Answer: printf()
Explanation:
Note: This Question is unanswered, help us to find answer for this one
PHP Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More PHP MCQ Questions
Which is not a valid key type for arrays in PHP?
What does delete() function do?
Which PHP function sends a raw HTTP header to a client?
Which will return the value of current session id?
What separates a sequence of one or more characters used to specify the boundary between separate text regions?
How do you start a session in PHP?
Which is not related with respect to calculating the size of a file?
Correct way to open the file 'sample.txt' as read only?
Which function can convert a comma separated string into an array using a single call?
What will be the output of the following code? elements[] = '$text'; return $this; } public function input($type, $name, $value = ') { $this->elements[] = ''; return $this; } public function textarea($name, $value = ') { $this->elements[] = '$value'; return $this; } public function __toString() { return join('\n', $this->elements); } } $b = new FormBuilder(); echo $b->label('Name')->input('text', 'name')->textarea('message', 'My message');