zoukankan      html  css  js  c++  java
  • 165-PHP 文本替换函数str_replace(六)

    <?php
        $str='programming';        //定义一个字符串
        $replacement='er';        //定义替换的字符串
        $res=substr_replace($str,$replacement,8);        //处理字符串
        echo "{$str}执行替换后的效果:<br />{$res}";
    ?> 

    <?php
        $str='programming';        //定义一个字符串
        $replacement='er';        //定义替换的字符串
        $res=substr_replace($str,$replacement,-4);        //处理字符串
        echo "{$str}执行替换后的效果:<br />{$res}";
    ?> 

    <?php
        $str='programming';        //定义一个字符串
        $replacement='er';        //定义替换的字符串
        $res=substr_replace($str,$replacement,-4,1);        //处理字符串
        echo "{$str}执行替换后的效果:<br />{$res}";
    ?> 

    <?php
        $str='programming';        //定义一个字符串
        $replacement='er';        //定义替换的字符串
        $res=substr_replace($str,$replacement,-4,-1);        //处理字符串
        echo "{$str}执行替换后的效果:<br />{$res}";
    ?>

    <?php
        $str='programming';        //定义一个字符串
        $replacement='er';        //定义替换的字符串
        $res=substr_replace($str,$replacement,-4,0);        //处理字符串
        echo "{$str}执行替换后的效果:<br />{$res}";
    ?>

  • 相关阅读:
    SyntaxError: Non-ASCII character 'xe7' in file解决方法
    python实现微信打飞机游戏
    ubuntu 系统出错一览
    MVC的特点
    架构
    策略模式
    bin
    使用XSLT实现Word下载
    <a>标签的href属性
    call-template和apply-templates
  • 原文地址:https://www.cnblogs.com/tianpan2019/p/11037741.html
Copyright © 2011-2022 走看看