File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / ereg / tests / eregi_replace_basic.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:54 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 eregi_replace() function : basic functionality - confirm case insensitivity
--FILE--

<?php
/* Prototype  : proto string eregi_replace(string pattern, string replacement, string string)
 * Description: Case insensitive replace regular expression 
 * Source code: ext/standard/reg.c
 * Alias to functions: 
 */

/*
 * Test basic functionality of eregi_replace()
 */

echo "*** Testing eregi_replace() : basic functionality ***\n";

$string = 'UPPERCASE WORDS, lowercase words, MIxED CaSe woRdS';

echo "String Before...\n";
var_dump($string);
echo "\nString after...\n";

var_dump(eregi_replace('([[:lower:]]+) word', '\\1_character', $string));

echo "Done";
?>

--EXPECTF--
*** Testing eregi_replace() : basic functionality ***
String Before...
string(50) "UPPERCASE WORDS, lowercase words, MIxED CaSe woRdS"

String after...

Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(65) "UPPERCASE_characterS, lowercase_characters, MIxED CaSe_characterS"
Done

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