本文整理汇总了PHP中SplStack::unshift方法的典型用法代码示例。如果您正苦于以下问题:PHP SplStack::unshift方法的具体用法?PHP SplStack::unshift怎么用?PHP SplStack::unshift使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SplStack
的用法示例。
在下文中一共展示了SplStack::unshift方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: unshift
/**
* @return self
*
* @throws \InvalidArgumentException Missing argument(s) when calling unshift
*/
public function unshift()
{
if (func_num_args() === 0) {
throw new \InvalidArgumentException("Missing argument(s) when calling unshift");
}
$spec = func_get_args();
$this->specs->unshift($spec);
return $this;
}
示例2: unshift
/**
* @return $this
*/
public function unshift()
{
if (func_num_args() === 0) {
throw new \InvalidArgumentException('Missing argument(s) when calling unshift');
}
$msgApp = func_get_args();
$this->components->unshift($msgApp);
return $this;
}
示例3: unshift
/**
* Push callback to the top of stack
* @param callable $cb Callback
* @return void
*/
public function unshift($cb)
{
parent::unshift(CallbackWrapper::wrap($cb));
}
示例4: tokenize
private function tokenize($text)
{
$tokens = new \SplStack();
$position = 0;
while (mb_strlen($text) > 0) {
foreach ($this->lexerRules as $token => $regex) {
if (preg_match($regex, $text, $matches)) {
$tokens->unshift(array($token, $matches[0], $position));
$text = mb_substr($text, mb_strlen($matches[0]));
$position += mb_strlen($matches[0]);
break;
}
}
}
return $tokens;
}