会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
首页
订阅
管理
[php函数]切割字符串
/** * function cut is used to cut string between $from and $to */ function cut($str,$from,$to,$direct='out') { //echo "$str \n $from \n $to \n"; //$from = "\""; $to = "\""; $frompos = strpos($str,$from); $topos = strpos($str,$to,$frompos+strlen($from)); if($direct == 'in'){ $start = $frompos+strlen($from); $end = $topos-$start; $txt = substr($str,$start,$end); } else { $start = $frompos; $end = $topos+strlen($to)-$frompos; $txt = substr($str,$start,$end); } return $txt; } // end func cut
Posted on
2005-11-15 21:21
古代
阅读(
433
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部