Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 448 Bytes

0751.md

File metadata and controls

22 lines (18 loc) · 448 Bytes

Consider the following snippet of code. What is the name of the function that needs to be inserted in the placeholder?

$dh = opendir(".");
while ($file = _____($dh)) {
	echo $file;
}
  • A) readdir
  • B) parse
  • C) point
  • D) echo
Answer

Answer: A