blob: 3b0d8ea7b32456bea257cecce6dd0cdd27906f0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
addcslashes(); function test
--CREDITS--
marcosptf - <marcosptf@yahoo.com.br>
#phptestfest PHPSP on Google - Sao Paulo - Brazil - 2014-06-05
--FILE--
<?php
echo addcslashes("zoo['.']","z..A");
?>
--EXPECTF--
Warning: addcslashes(): Invalid '..'-range, '..'-range needs to be incrementing in %s on line %d
\zoo['\.']
|