當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。