Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 437 Bytes

0411.md

File metadata and controls

21 lines (17 loc) · 437 Bytes

What is the output of the following script?

$html = '<p>line1line2</p>';
echo strip_tags($html'br');

Enter the exact script output

  • A) line1line2
  • B) line1
    line2
  • C) line1
    line2
  • D) line1line2
Answer

Answer: A