PHP中ereg 跟ereg _replace的配合
程序员文章站
2022-05-13 21:00:55
...
PHP中ereg 和ereg _replace的配合
$text = 'This is a {1}
day, not {2} and {3}.';
$daytype = array( 1 => 'fine',
????????????????? 2 => 'overcast',
????????????????? 3 => 'rainy' );
while (ereg ('{([0-9]+)}', $text, $regs)) {
? $found = $regs[1];
? $text = ereg_replace("\{".$found."\}", $daytype[$found], $text);
}
echo "$text\n";
// This is a fine day, not overcast and rainy.
?>
$daytype = array( 1 => 'fine',
????????????????? 2 => 'overcast',
????????????????? 3 => 'rainy' );
while (ereg ('{([0-9]+)}', $text, $regs)) {
? $found = $regs[1];
? $text = ereg_replace("\{".$found."\}", $daytype[$found], $text);
}
echo "$text\n";
// This is a fine day, not overcast and rainy.
?>
结果:This is a fine day, not overcast and rainy
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
上一篇: php 日历类 日历控件
下一篇: 一个不错的PHP缓存类介绍
推荐阅读
-
php 升级到 5.3+ 后出现的一些错误,如 ereg(); ereg_replace(); 函数报错
-
PHP函数eregi()在实际应用中与ereg()的不同之处
-
php 升级到 5.3+ 后出现的一些错误,如 ereg(); ereg_replace(); 函数报错,eregereg_replace
-
php 升级到 5.3+ 后出现的一些异常,如 ereg(); ereg_replace(); 函数报错
-
PHP函数eregi()在实际应用中与ereg()的不同之处_PHP教程
-
PHP ereg_replace()函数的工作原理解析
-
PHP函数eregi()在实际应用中与ereg()的不同之处
-
php 升级到 5.3+ 后出现的一些错误,如 ereg(); ereg_replace(); 函数报错_PHP
-
php 升级到 5.3+ 后出现的一些错误,如 ereg(); ereg_replace(); 函数报错_PHP
-
php 升级到 53+ 后出现的一些错误,如 ereg; ereg_replace; 函数报错
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论