str_replace不能用作被驱逐的php

时间:2016-01-23 16:53:33

标签: php

str_replace找不到字符串并按照它应该替换。

这是echo

输出的$ data字符串
 eth0 192.168.1.1/24 u/u Local eth0.51 192.168.5.1/24 u/u Dev 1 eth1  x.x.x.x/24 u/u Internet eth2 192.168.2.1/24 u/D Local 2 lo 127.0.0.1/8 u/u ::1/128 tun35 192.168.4.222/24 u/u

这是我的代码

  $ssh = new Net_SSH2("$routerip");
  if (!$ssh->login("$username", "$password")) {
  return $radioip["error"] ='router error';
  }

 $data = $ssh->exec("/opt/vyatta/bin/vyatta-op-cmd-wrapper show interfaces");

$string = 'eth';  

$datastart = strpos($data,$string);
$datastart = $datastart -1;

$pattern ='lo 127.0.0.1/8 u/u ::1/128';
$replace = '';  
echo "$pattern";
$data = substr($data,$datastart);
$data = str_replace($pattern,$replace, $data);
echo "$data";

编辑

这是substr

之前的$ data
 Codes: S - State, L - Link, u - Up, D - Down, A - Admin Down Interface IP  Address S/L Description --------- ---------- --- ----------- eth0 192.168.1.1/24   u/u Local eth0.51 192.168.5.1/24 u/u Dev 1 eth1 x.x.x.x/24 u/u Internet eth2 192.168.2.1/24 u/D Local 2 lo 127.0.0.1/8 u/u ::1/128 tun35 192.168.4.222/24 u/u

1 个答案:

答案 0 :(得分:0)

问题在于

$datastart = $datastart -1;

如果$datastart为0(在您的情况下为eth位于字符串的开头),则$datastart -1;使$datastart等于{{1} }。

这会影响-1,因为负偏移会将$data = substr($data,$datastart);字符串更改为$data。你肯定没有u

我认为最简单的方法是检查$pattern是否小于0并将其设置为零:

$datastart