php批量替换数组中的元素值
Posted ysbl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php批量替换数组中的元素值相关的知识,希望对你有一定的参考价值。
<?php
$files = array();
foreach (glob("/www/wwwroot/5.com/*.jpg") as $file) {
$files[] = $file;
}
$ss =str_replace(‘/www/wwwroot/5.com/‘,‘5.com.com/‘,$files);
print_r($ss);
以上是关于php批量替换数组中的元素值的主要内容,如果未能解决你的问题,请参考以下文章
oracle中,如何批量替换某字段的部分值,该字段其他部分保持不变?