芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContains.php
_substring); } /** * Matches if value is a string that contains $substring. * * @factory */ public static function containsString($substring) { return new self($substring); } // -- Protected Methods protected function evalSubstringOf($item) { return (false !== strpos((string) $item, $this->_substring)); } protected function relationship() { return 'containing'; } }