Maison  >  Article  >  développement back-end  >  php中正则替换函数ereg_replace用法实例_PHP教程

php中正则替换函数ereg_replace用法实例_PHP教程

WBOY
WBOYoriginal
2016-07-13 10:11:24928parcourir

php中正则替换函数ereg_replace用法实例

 下面的实例是利用php 正则替换函数 ereg_replace来把指定的字符替换成我想需要的字符实例,代码如下:

代码如下:

$num = 'www.jb51.net';
$string = "this string has four words.
";
$string = ereg_replace ('four', $num, $string);
echo $string;

 

$num = '49';
$string = "this string has four words";
$string = ereg_replace ('four', $num, $string);
echo $string;

$string ="测试用文字";
echo "**********$string**********

";
$string = ereg_replace ("^", "
", $string);
$string = ereg_replace ("$", "
", $string);
echo "==========$string==========";

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/930077.htmlTechArticlephp中正则替换函数ereg_replace用法实例 下面的实例是利用php 正则替换函数 ereg_replace来把指定的字符替换成我想需要的字符实例,代码如下: 代...
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn