<?php function str_replace_once($needle,$haystack) { $pos = strpos($haystack, $needle); if ($pos === false) { return $haystack; } return substr_replace($haystack, $replace, $pos, strlen($needle)); } echo str_replace_once($needle,$replace,$haystack); ?>
作者:chenjie3392593 发表于2013-8-28 18:25:17 原文链接
阅读:70 评论:0 查看评论