find() public static method

Filter and return entries that match any of specified patterns.
public static find ( string | string[] $pattern, string[] $entries ) : string[]
$pattern string | string[]
$entries string[]
return string[]
コード例 #1
0
ファイル: Channel.php プロジェクト: kraken-php/framework
 /**
  * @override
  * @inheritDoc
  */
 public function filterConnected($pattern)
 {
     return StringSupport::find($pattern, $this->getConnected());
 }