本文整理汇总了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);
}
示例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;
}
示例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);
}
示例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;
}
示例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));
}