コード例 #1
0
 /**
  * @dataProvider removeRightProvider()
  */
 public function testRemoveRight($expected, $str, $substring, $encoding = null)
 {
     $result = S::removeRight($str, $substring, $encoding);
     $this->assertInternalType('string', $result);
     $this->assertEquals($expected, $result);
 }
コード例 #2
0
ファイル: StringyLoader.php プロジェクト: lablog/stringy
 public function removeRight($string, $subString)
 {
     return Stringy::removeRight($string, $subString);
 }
 public function index($value, $params = array())
 {
     return Stringy::removeRight($value, array_get($params, 0));
 }
コード例 #4
0
ファイル: Str.php プロジェクト: hrmshandy/finder
 public static function removeRight($string, $char)
 {
     return Stringy::removeRight($string, $char);
 }
コード例 #5
0
ファイル: Schema.php プロジェクト: sqrt-pro/db
 /** Класс для Item */
 public function getItemClass($with_namespace = true)
 {
     $cl = $this->item_class ?: '\\' . StaticStringy::removeRight($this->getName(), 's');
     $a = explode('\\', $cl);
     return $with_namespace ? $cl : end($a);
 }