本文整理汇总了PHP中SpoonFilter::isNumeric方法的典型用法代码示例。如果您正苦于以下问题:PHP SpoonFilter::isNumeric方法的具体用法?PHP SpoonFilter::isNumeric怎么用?PHP SpoonFilter::isNumeric使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SpoonFilter
的用法示例。
在下文中一共展示了SpoonFilter::isNumeric方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addNumber
/**
* Add a number to the string
*
* @param string $string The string where the number will be appended to.
* @return string
*/
public static function addNumber($string)
{
// split
$chunks = explode('-', $string);
// count the chunks
$count = count($chunks);
// get last chunk
$last = $chunks[$count - 1];
// is nummeric
if (SpoonFilter::isNumeric($last)) {
// remove last chunk
array_pop($chunks);
// join together, and increment the last one
$string = implode('-', $chunks) . '-' . ((int) $last + 1);
} else {
$string .= '-2';
}
return $string;
}
示例2: testIsNumeric
public function testIsNumeric()
{
$this->assertTrue(SpoonFilter::isNumeric('010192029'));
$this->assertTrue(SpoonFilter::isNumeric(1337));
$this->assertFalse(SpoonFilter::isNumeric('I can has cheezeburger'));
}