File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / strings / addcslashes_001.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:04 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
Test addcslashes() function (variation 1)
--INI--
precision=14
--FILE--
<?php

echo "*** Testing addcslashes() for basic operations ***\n";
/* checking normal operation of addcslashes */
$string = "goodyear12345NULL\0truefalse\a\v\f\b\n\r\t";
$charlist = array ( 
  NULL,
  2,
  array(5,6,7),
  "a",
  "\0",
  "\n",
  "\r",
  "\t",
  "\a",
  "\v",
  "\b",
  "\f"
);
/* loop prints string with backslashes before characters
   mentioned in $char using addcslashes() */
$counter = 1;
foreach($charlist as $char) {
  echo "-- Iteration $counter --\n";
  var_dump( addcslashes($string, $char) );
  $counter++;
}

echo "Done\n"; 

?>
--EXPECTF--
*** Testing addcslashes() for basic operations ***
-- Iteration 1 --
string(36) "goodyear12345NULLtruefalse\a\b

	"
-- Iteration 2 --
string(37) "goodyear1\2345NULLtruefalse\a\b

	"
-- Iteration 3 --

Warning: addcslashes() expects parameter 2 to be string, array given in %s on line %d
NULL
-- Iteration 4 --
string(39) "goodye\ar12345NULLtruef\alse\\a\b

	"
-- Iteration 5 --
string(39) "goodyear12345NULL\000truefalse\a\b

	"
-- Iteration 6 --
string(37) "goodyear12345NULLtruefalse\a\b\n
	"
-- Iteration 7 --
string(37) "goodyear12345NULLtruefalse\a\b
\r	"
-- Iteration 8 --
string(37) "goodyear12345NULLtruefalse\a\b

\t"
-- Iteration 9 --
string(41) "goodye\ar12345NULLtruef\alse\\\a\\b

	"
-- Iteration 10 --
string(37) "goodyear12345NULLtruefalse\a\v\b

	"
-- Iteration 11 --
string(39) "goodyear12345NULLtruefalse\\a\\\b

	"
-- Iteration 12 --
string(37) "goodyear12345NULLtruefalse\a\f\b

	"
Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>