--TEST-- Test strip_tags() function : basic functionality - with all arguments --INI-- set short_open_tag = on --FILE--

hello

worldOther text"; $allowed_tags_array=array( "", '', "

", '

', "", '', "

--EXPECTF-- *** Testing strip_tags() : basic functionality *** -- Iteration 1 -- string(33) "helloworldOther text" -- Iteration 2 -- string(33) "helloworldOther text" -- Iteration 3 -- string(27) "

hello

worldOther text" -- Iteration 4 -- string(27) "

hello

worldOther text" -- Iteration 5 -- string(44) "helloworld
Other text" -- Iteration 6 -- string(44) "helloworldOther text" -- Iteration 7 -- string(20) "helloworldOther text" -- Iteration 8 -- string(20) "helloworldOther text" -- Iteration 9 -- string(64) "

hello

worldOther text" Done