--TEST-- Test strip_tags() function : usage variations - double quoted strings --INI-- short_open_tag = on --FILE-- \$ -> This represents the dollar sign", "\t\r\v The quick brown fo\fx jumped over the lazy dog

", "This is a hyper text tag", "hello world\\t?>", "

This is a paragraph

", "This is \ta text in bold letters\r\s\malong with slashes\n" ); $quotes = "

$ -> This represents the dollar sign" -- Iteration 2 -- string(59) " The quick brown fo x jumped over the lazy dog

" -- Iteration 3 -- string(31) "
This is a hyper text tag" -- Iteration 4 -- string(0) "" -- Iteration 5 -- string(26) "

This is a paragraph

" -- Iteration 6 -- string(62) "This is a text in bold letters \s\malong with slashes " Done