php srt,PHP strsrt()函数与示例

PHPstrsrt()方法

strsrt()函数是PHP中的字符串函数,用于替换字符串中的字符。在此功能中,我们可以提供多个要替换的字符,以新的多个替换字符集。(例如:如果我们想将“ a”替换为“ x”,将“ b”替换为“ y”,那么我们可以传递“ ab”替换为“ xy”))

语法:strstr(string, old, new);

这里,string是主要字符串,我们必须在其中替换某些字符。

old是要替换的字符集。

new是要替换的字符集。

例子:Input:

str = "这是一个游戏。";

old = "ia"

new = "eo"

Output:

Thes es o Gome.

Input:

str = "这是一个游戏。";

old = " ."

new = "_#"

Output:

This_is_a_Game#

PHP代码:<?php

$str = "这是一个游戏。";

//replacing "i" with "e" and "a" with "0"

echo (strtr($str,"ia","eo") . "\n");

$str = "这是一个游戏。";

//replacing space with "_" and dot (.) with "#"

echo (strtr($str," .","_#") . "\n");

?>

输出结果Thes es o Gome.

This_is_a_Game#

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值