1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
--TEST--
Test stripslashes() function : usage variations - double dimensional arrays
--FILE--
<?php
/* Prototype : string stripslashes ( string $str )
* Description: Returns an un-quoted string
* Source code: ext/standard/string.c
*/
/*
* Test stripslashes() with double dimensional arrays
*/
echo "*** Testing stripslashes() : with double dimensional arrays ***\n";
// initialising the string array
$str_array = array(
array("", array()),
array("", array("")),
array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar")),
array("f\\'oo", "b\\'ar", array("")),
array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar", array(""))),
array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar", array("fo\\'o", "b\\'ar")))
);
function stripslashes_deep($value) {
$value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
return $value;
}
$count = 1;
// looping to test for all strings in $str_array
foreach( $str_array as $arr ) {
echo "\n-- Iteration $count --\n";
var_dump( stripslashes_deep($arr) );
$count ++;
}
echo "Done\n";
?>
--EXPECTF--
*** Testing stripslashes() : with double dimensional arrays ***
-- Iteration 1 --
array(2) {
[0]=>
string(0) ""
[1]=>
array(0) {
}
}
-- Iteration 2 --
array(2) {
[0]=>
string(0) ""
[1]=>
array(1) {
[0]=>
string(0) ""
}
}
-- Iteration 3 --
array(3) {
[0]=>
string(4) "f'oo"
[1]=>
string(4) "b'ar"
[2]=>
array(2) {
[0]=>
string(4) "fo'o"
[1]=>
string(4) "b'ar"
}
}
-- Iteration 4 --
array(3) {
[0]=>
string(4) "f'oo"
[1]=>
string(4) "b'ar"
[2]=>
array(1) {
[0]=>
string(0) ""
}
}
-- Iteration 5 --
array(3) {
[0]=>
string(4) "f'oo"
[1]=>
string(4) "b'ar"
[2]=>
array(3) {
[0]=>
string(4) "fo'o"
[1]=>
string(4) "b'ar"
[2]=>
array(1) {
[0]=>
string(0) ""
}
}
}
-- Iteration 6 --
array(3) {
[0]=>
string(4) "f'oo"
[1]=>
string(4) "b'ar"
[2]=>
array(3) {
[0]=>
string(4) "fo'o"
[1]=>
string(4) "b'ar"
[2]=>
array(2) {
[0]=>
string(4) "fo'o"
[1]=>
string(4) "b'ar"
}
}
}
Done
|