What function returns a line, strips any XHTML tags the line contains, and then moves the file pointer to the next line?
A. fgetcsv(handle, length[, delimiter, string_enclosure])
B. stream_get_line)$handle, length, delimiter)
C. fgetss($handle, length[, allowed_tags])
D. fgets(handle[, length])
Answer: C
You might also like to view...
Select all that apply. Which of the following would be appropriate in a program that allows the user to enter either an uppercase or lowercase character in response to a prompt?
a. tolower b. ignorecase c. toupper d. ignoreupper e. ignorelower
Data and Model, Titles and Headings, and Number Format are all examples of predefined ________
Fill in the blank(s) with correct word
Identify the letter of the choice that best matches the phrase or definition.
A. The formatting rules of a language. B. An error in the program code. C. Location in memory for temporary storage of information. D. Statement that appears in a main procedure. E. Added security for a project.
Line 5 in the function below can be replaced with ____. 1 void strcopy (char string1[], char string2[]) 2 { 3 int i = 0; 4 5 while (string2[i] != '\0') 6 { 7 string1[i] = string2[i]; 8 i++; 9 }10 string1[i] = '\0';11 }
A. while (string2[i]) B. while (!string2[i]) C. while (string2[i] < '\0') D. while (string2[i] != '\n')