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


PHP StringUtils::startsWith方法代码示例

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


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

示例1: testStartsWith

 /**
  * Test for Schwaen\Stdlib\StringUtils::startsWith
  */
 public function testStartsWith()
 {
     $this->assertEquals(false, StringUtils::startsWith('Hallo Welt', 'hallo'));
     $this->assertEquals(true, StringUtils::startsWith('Hallo Welt', 'Hallo'));
     $this->assertEquals(false, StringUtils::startsWith('Hallo Welt', 'Test'));
     $this->assertEquals(true, StringUtils::startsWith('Hallo Welt', ''));
 }
开发者ID:schwaen,项目名称:stdlib,代码行数:10,代码来源:StringUtilsTest.php

示例2: __call

 public function __call($name, $value)
 {
     if (StringUtils::startsWith($name, "set")) {
         $this->executeSetter($name, $value);
     } else {
         if (StringUtils::startsWith($name, "get")) {
             $this->executeGetter($name);
         }
     }
 }
开发者ID:nikelin,项目名称:Direct-API,代码行数:10,代码来源:Abstract.php

示例3: __call

 public function __call($name, array $args)
 {
     if (StringUtils::startsWith($name, "get") && strlen($name) != 3) {
         $name = ucfirst(substr($name, 3));
         if (isset($this->_data[$name])) {
             return $this->_data[$name];
         }
         return null;
     }
     throw new Exception("Unknown method {$name}!");
 }
开发者ID:nikelin,项目名称:Direct-API,代码行数:11,代码来源:Response.php

示例4: resolveURI

 protected function resolveURI($uri)
 {
     if (empty($uri) || StringUtils::startsWith($uri, '/')) {
         return rtrim($this->routerBase, '/') . '/' . ltrim($uri, '/');
     }
     //return $this->RequestContext->getSite()->getBaseURL().'/'.ltrim($uri, '/');
     return $uri;
 }
开发者ID:wb-crowdfusion,项目名称:crowdfusion,代码行数:8,代码来源:Response.php

示例5: testStartsWithFail

 /**
  * @covers StringUtils::startsWith
  */
 public function testStartsWithFail()
 {
     $haystack = "fruition sciences";
     $needle = "Fruit";
     $response = \StringUtils::startsWith($haystack, $needle);
     $this->assertFalse($response);
 }
开发者ID:fruition-sciences,项目名称:phpfw,代码行数:10,代码来源:StringUtilsTest.php

示例6: detectMethodSignature

 private static function detectMethodSignature($name)
 {
     require_once 'platform/stdlib/StringUtils.php';
     if (StringUtils::startsWith($name, self::METHOD_SIGNATURE_GET)) {
         return self::METHOD_SIGNATURE_GET;
     }
     if (StringUtils::startsWith($name, self::METHOD_SIGNATURE_SET)) {
         return self::METHOD_SIGNATURE_SET;
     }
     return null;
 }
开发者ID:VivekRagunathan,项目名称:php-savers,代码行数:11,代码来源:Call2KeyMapper.php

示例7: write_mind

 function write_mind($message, $origin_id, $attach_pic = false, $autopost_fb = 0, $autopost_tw = 0)
 {
     $params = array('message' => $message, 'origin_id' => $origin_id, 'autopost_fb' => $autopost_fb, 'autopost_tw' => $autopost_tw, 'access_token' => $this->access_token, 'rf' => $this->rf);
     if ($attach_pic) {
         if (!StringUtils::startsWith($attach_pic, '@')) {
             $attach_pic = sprintf('%s%s', '@', $attach_pic);
         }
         $params['attach_pic'] = $attach_pic;
     }
     $conn = new Http('POST', $this->getApiHost('/post/write_mind'), $params);
     return $conn->execute();
 }
开发者ID:rizkyabdilah,项目名称:mtoauth,代码行数:12,代码来源:mtoauth.php


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