summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strspn_variation10.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/strings/strspn_variation10.phpt')
-rw-r--r--ext/standard/tests/strings/strspn_variation10.phpt50
1 files changed, 25 insertions, 25 deletions
diff --git a/ext/standard/tests/strings/strspn_variation10.phpt b/ext/standard/tests/strings/strspn_variation10.phpt
index d8eb52aa6f..952110880f 100644
--- a/ext/standard/tests/strings/strspn_variation10.phpt
+++ b/ext/standard/tests/strings/strspn_variation10.phpt
@@ -19,35 +19,35 @@ echo "*** Testing strspn() : with different mask strings and default start and l
// defining different strings
$strings = array(
"",
- '',
- "\n",
- '\n',
- "hello\tworld\nhello\nworld\n",
- 'hello\tworld\nhello\nworld\n',
- "1234hello45world\t123",
- '1234hello45world\t123',
- "hello\0world\012",
- 'hello\0world\012',
- chr(0).chr(0),
- chr(0)."hello\0world".chr(0),
- chr(0).'hello\0world'.chr(0),
- "hello".chr(0)."world",
- 'hello'.chr(0).'world',
- "hello\0\100\xaaaworld",
- 'hello\0\100\xaaaworld'
+ '',
+ "\n",
+ '\n',
+ "hello\tworld\nhello\nworld\n",
+ 'hello\tworld\nhello\nworld\n',
+ "1234hello45world\t123",
+ '1234hello45world\t123',
+ "hello\0world\012",
+ 'hello\0world\012',
+ chr(0).chr(0),
+ chr(0)."hello\0world".chr(0),
+ chr(0).'hello\0world'.chr(0),
+ "hello".chr(0)."world",
+ 'hello'.chr(0).'world',
+ "hello\0\100\xaaaworld",
+ 'hello\0\100\xaaaworld'
);
// define the array of mask strings
$mask_array = array(
- "",
- '',
- "f\n\trelshti \l",
- 'f\n\trelsthi \l',
- "\telh",
- "t\ ",
- '\telh',
- "felh\t\ ",
- " \t",
+ "",
+ '',
+ "f\n\trelshti \l",
+ 'f\n\trelsthi \l',
+ "\telh",
+ "t\ ",
+ '\telh',
+ "felh\t\ ",
+ " \t",
"fhel\t\i\100\xa"
);