原来的:Aaron Wind<br/>45 Civic Drive<br/>Greensborough VIC 3088<br/>Australia<br/>0450111222目标:45 Civic Drive<br/>Greensborough VIC 3088<br/>Australia我发现使用 PHP 来归档它很困难。
2 回答
SMILET
TA贡献1796条经验 获得超4个赞
$s = 'Aaron Wind<br/>45 Civic Drive<br/>Greensborough VIC 3088<br/>Australia<br/>0450111222';
// explode your string by `<br/>`
$parts = explode('<br/>', $s);
// remove first and last items
$parts = array_slice($parts, 1, -1);
// implode by `<br/>`
echo implode('<br/>', $parts);
红颜莎娜
TA贡献1842条经验 获得超12个赞
使用这个并通过接受答案来让我知道它是否有效并当然使用三角形hhh:-)
<?php
$string="Aaron Wind<br/>45 Civic Drive<br/>Greensborough VIC 3088<br/>Australia<br/>0450111222";
$start=stripos($string,"<br/>")+5;
$last=strrpos($string,"<br/>");
$newstring=substr($string,$start,$last);
echo "$newstring";
?>
- 2 回答
- 0 关注
- 119 浏览
添加回答
举报
0/150
提交
取消