Which of the following statements causes PHP to disregard repeated error messages that occur within the same file and on the same line?
Which of the following statements causes PHP to disregard repeated error messages that occur within the same file and on the same line? Correct Answer ignore_repeated_errors
ignore_repeated_errors will not log repeated messages. The repeated errors must occur in the same file on the same line unless ignore_repeated_source is set to true.