--TEST-- Test strip_tags() function : usage variations - single 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 = "

--EXPECTF-- *** Testing strip_tags() : usage variations *** -- Iteration 1 -- string(51) " \$ -> This represents the dollar sign" -- Iteration 2 -- string(63) "\t\r\v The quick brown fo\fx 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(65) "This is \ta text in bold letters\r\s\malong with slashes\n" Done