当前位置: 首页>>代码示例>>PHP>>正文


PHP Strings::endsWith方法代码示例

本文整理汇总了PHP中Strings::endsWith方法的典型用法代码示例。如果您正苦于以下问题:PHP Strings::endsWith方法的具体用法?PHP Strings::endsWith怎么用?PHP Strings::endsWith使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Strings的用法示例。


在下文中一共展示了Strings::endsWith方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: isFileInDir

 /**
  * Ověří, zda soubor je v zadaném adresáři.
  * @param string $file
  * @param string $dir
  * @return bool
  */
 static function isFileInDir($file, $dir)
 {
     if (!Strings::endsWith($dir, "/")) {
         $dir .= "/";
     }
     return Strings::startsWith($file, $dir);
 }
开发者ID:ondrakoupil,项目名称:tools,代码行数:13,代码来源:Files.php

示例2: getActionAccessList

 /**
  * @param $className
  * @return array
  * Get a controller's actions by reflection
  * 通过反射得到我们需要的Controller Class里面的每一个Action(s)
  */
 private function getActionAccessList($className)
 {
     $clz = new ReflectionClass($className);
     $methods = $clz->getMethods(ReflectionMethod::IS_PUBLIC);
     $actions = array();
     foreach ($methods as $method) {
         if ($method->class != $className) {
             continue;
         }
         $methodName = $method->getName();
         if (Strings::endsWith($methodName, 'Action')) {
             $nodeAccess = $this->getActionAccess($method);
             if ($nodeAccess['page']) {
                 array_push($actions, $nodeAccess);
             }
         }
     }
     return $actions;
 }
开发者ID:healerkx,项目名称:AdminBuildr,代码行数:25,代码来源:KxAdminNodeController.php

示例3: appendIfMissing

 /**
  * Adds suffix to the string, if string does not end with the suffix already.
  *
  * Example:
  * <code>
  * $string = 'Daenerys Targaryen';
  * $stringWithPrefix = Strings::appendMissingSuffix($string, ' Targaryen');
  * </code>
  * Result:
  * <code>
  * Daenerys Targaryen
  * </code>
  *
  * @param string $string
  * @param string $suffix
  * @return string
  */
 public static function appendIfMissing($string, $suffix)
 {
     if (Strings::endsWith($string, $suffix)) {
         return $string;
     }
     return Strings::appendSuffix($string, $suffix);
 }
开发者ID:letsdrink,项目名称:ouzo,代码行数:24,代码来源:Strings.php

示例4: callMethod

 /**
  * @param mixed $object
  * @param string $methodName
  * @param mixed $default
  * @return mixed
  */
 public static function callMethod($object, $methodName, $default)
 {
     $name = rtrim($methodName, '()');
     if (Strings::endsWith($methodName, '()') && method_exists($object, $name)) {
         $result = $object->{$name}();
         return $result === null ? $default : $result;
     }
     return $default;
 }
开发者ID:nomantufail,项目名称:virik_updating,代码行数:15,代码来源:Objects.php

示例5: testEndsWith

 /**
  * endsWith() をテストします. 以下を確認します.
  * 
  * - 第 1 引数の文字列の末尾が第 2 引数の文字列に合致した場合に true, それ以外は false を返す
  * - 第 2 引数が空文字列の場合は true を返す
  * - 引数が文字列型でない場合は文字列に変換してから適用する
  * 
  * @covers Peach\Util\Strings::endsWith
  */
 public function testEndsWith()
 {
     $this->assertSame(true, Strings::endsWith("The quick brown fox", "fox"));
     $this->assertSame(false, Strings::endsWith("Hogehoge", "Hoge"));
     $this->assertSame(true, Strings::endsWith("something", ""));
     $suffix = new StringsTest_Object("TEST");
     $subject = new StringsTest_Object("objectTEST");
     $other = new StringsTest_Object("fuga");
     $this->assertSame(true, Strings::endsWith($subject, $suffix));
     $this->assertSame(false, Strings::endsWith($subject, $other));
 }
开发者ID:trashtoy,项目名称:peach2,代码行数:20,代码来源:StringsTest.php


注:本文中的Strings::endsWith方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。