TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
340 B
15 lines
340 B
--TEST--
|
|
addcslashes(); function test with warning
|
|
--SKIPIF--
|
|
<?php
|
|
?>
|
|
--CREDITS--
|
|
marcosptf - <marcosptf@yahoo.com.br>
|
|
#phptestfest PHPSP on Google - Sao Paulo - Brazil - 2014-06-05
|
|
--FILE--
|
|
<?php
|
|
echo addcslashes("zoo['.']", "z..A");
|
|
?>
|
|
--EXPECTF--
|
|
%s: Invalid '..'-range, '..'-range needs to be incrementing in %s on line %d
|
|
\zoo['\.']
|
|
|