1--TEST--
2addslashes() and stripslashes() functions
3--FILE--
4<?php
5
6$input = '';
7for($i=0; $i<512; $i++) {
8	$input .= chr($i%256);
9}
10
11echo "Normal: ";
12if($input === stripslashes(addslashes($input))) {
13	echo "OK\n";
14} else {
15	echo "FAILED\n";
16}
17
18?>
19--EXPECT--
20Normal: OK
21