php中正则替换函数ereg_replace用法实例_PHP教程
程序员文章站
2022-04-09 08:53:25
...
php中正则替换函数ereg_replace用法实例
下面的实例是利用php 正则替换函数 ereg_replace来把指定的字符替换成我想需要的字符实例,代码如下:
代码如下:
$num = 'www.jb51.net';
$string = "this string has four words.
";
$string = ereg_replace ('four', $num, $string);
echo $string;
$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==========";
上一篇: PHP5.5安装php-redis扩展
下一篇: HTTP请求头
推荐阅读
-
PHP中SimpleXML函数用法分析,phpsimplexml_PHP教程
-
PHP、Python 相关正则函数一点实例_PHP教程
-
php中的curl使用入门教程和常见用法实例_php实例
-
PHP中feof()函数实例测试,phpfeof_PHP教程
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析_php实例
-
php中ob_get_length缓冲函数用法实例详解
-
php字符串替换函数substr_replace()用法实例_PHP教程
-
php中的字符编码转换函数用法示例,php示例_PHP教程
-
php中crypt()函数实例用法总结
-
php正则preg_replace_callback函数用法实例