-1

私は以下の配列を持っています。配列からグプタを削除し、残りの配列を返したいと思います。

$array = array('dave gupta', 'stephen gupta', 'rajni goel');
$substring want to delete gupta

出力が必要 =>

$array = array('dave', 'stephen', 'rajni');

事前に助けてくれてありがとう。

私の実際のコードでは

$this->Html->link($serv[$index]['Service'] => by this I can getting all the value from the data base.

私の価値観は

Web Development
Graphic design
App Development
Digital design

開発のみを削除し、残りのアレイを取得したいですか?

echo  urldecode(strtoupper($this->Html->link($serv[$index]['Service']['name'],array('controller' => $serv[$index]['Service']['controller'],
                   'action' => $serv[$index]['Service']['action'],$serv[$index]['Service']['id'],
                   'admin' => false,
                   'plugin' => false),array('class'=>'menuForFooter2'))));
4

1 に答える 1

-1

この場合、 array_filterが適合します。

$array = array('dave', 'gupta','stephen', 'gupta','rajni', 'goel');
$output=array_filter($array, function($s){return $s!='gupta';});
于 2013-09-11T00:04:07.427 に答える