當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Str類代碼示例

本文整理匯總了PHP中Str的典型用法代碼示例。如果您正苦於以下問題:PHP Str類的具體用法?PHP Str怎麽用?PHP Str使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Str類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: parse

 public function parse(RequestInterface $request, ResponseInterface $response, MapInterface $attributes) : MapInterface
 {
     $start = $this->clock->now();
     if (!$this->isHtml($attributes)) {
         return $attributes;
     }
     $document = $this->reader->read($response->body());
     try {
         $metas = (new Elements('meta'))((new Head())($document));
     } catch (ElementNotFoundException $e) {
         return $attributes;
     }
     $meta = $metas->filter(function (ElementInterface $meta) : bool {
         return $meta->attributes()->contains('name') && $meta->attributes()->get('name')->value() === 'apple-itunes-app' && $meta->attributes()->contains('content');
     });
     if ($meta->size() !== 1) {
         return $attributes;
     }
     $content = $meta->current()->attributes()->get('content')->value();
     $content = new Str($content);
     if (!$content->match(self::PATTERN)) {
         return $attributes;
     }
     $matches = $content->getMatches(self::PATTERN);
     return $attributes->put(self::key(), new Attribute(self::key(), (string) $matches['uri'], $this->clock->now()->elapsedSince($start)->milliseconds()));
 }
開發者ID:innmind,項目名稱:crawler,代碼行數:26,代碼來源:IosParser.php

示例2: make

 public function make(Str $name, Str $value) : HeaderInterface
 {
     if ((string) $name->toLower() !== 'content-type') {
         throw new InvalidArgumentException();
     }
     $matches = $value->getMatches('~(?<type>[\\w*]+)/(?<subType>[\\w*]+)(?<params>(; ?\\w+=\\"?[\\w\\-.]+\\"?)+)?~');
     return new ContentType(new ContentTypeValue((string) $matches->get('type'), (string) $matches->get('subType'), $this->buildParams($matches->hasKey('params') ? $matches->get('params') : new Str(''))));
 }
開發者ID:innmind,項目名稱:http,代碼行數:8,代碼來源:ContentTypeFactory.php

示例3: buildSubPropertyCondition

 private function buildSubPropertyCondition(ComparatorInterface $specification) : SequenceInterface
 {
     $prop = new Str($specification->property());
     $pieces = $prop->split('.');
     $var = (new Str('entity_'))->append($pieces->pop()->join('_'));
     $key = $var->append('_')->append((string) $pieces->last())->append((string) $this->count);
     return new Sequence(sprintf('%s %s %s', $var->append('.')->append((string) $pieces->last()), $specification->sign(), $key->prepend('{')->append('}')), new Collection([(string) $key => $specification->value()]));
 }
開發者ID:innmind,項目名稱:neo4j-onm,代碼行數:8,代碼來源:AggregateVisitor.php

示例4: test_it_replaces_between_haystack_with_closure

 public function test_it_replaces_between_haystack_with_closure()
 {
     $Str = new Str();
     $outcome = $Str->replaceBetween('something @here(...) and @here(...)', '@here', function ($between) {
         return "[ {$between} ]";
     });
     assertEquals('something [ ... ] and [ ... ]', $outcome);
 }
開發者ID:alpas29,項目名稱:cms,代碼行數:8,代碼來源:StrTest.php

示例5: fromString

 public static function fromString(string $type, Types $types) : TypeInterface
 {
     $type = new Str($type);
     if (!$type->match(self::PATTERN)) {
         throw new InvalidArgumentException();
     }
     return new self($types->build((string) $type->getMatches(self::PATTERN)->get('inner')));
 }
開發者ID:innmind,項目名稱:rest-client,代碼行數:8,代碼來源:SetType.php

示例6: buildSubPropertyMapping

 private function buildSubPropertyMapping(ComparatorInterface $specification) : MapInterface
 {
     $prop = new Str($specification->property());
     $pieces = $prop->split('.');
     $var = (new Str('entity_'))->append($pieces->pop()->join('_'));
     $key = $var->append('_')->append((string) $pieces->last());
     return (new Map('string', SequenceInterface::class))->put((string) $var, new Sequence(new Collection([(string) $pieces->last() => (string) $key->prepend('{')->append('}')]), new Collection([(string) $key => $specification->value()])));
 }
開發者ID:innmind,項目名稱:neo4j-onm,代碼行數:8,代碼來源:AggregateVisitor.php

示例7: make

 public function make(Str $name, Str $value) : HeaderInterface
 {
     if ((string) $name->toLower() !== 'content-language') {
         throw new InvalidArgumentException();
     }
     $values = new Set(HeaderValueInterface::class);
     foreach ($value->split(',') as $language) {
         $values = $values->add(new ContentLanguageValue((string) $language->trim()));
     }
     return new ContentLanguage($values);
 }
開發者ID:innmind,項目名稱:http,代碼行數:11,代碼來源:ContentLanguageFactory.php

示例8: make

 public function make(Str $name, Str $value) : HeaderInterface
 {
     if ((string) $name->toLower() !== 'allow') {
         throw new InvalidArgumentException();
     }
     $values = new Set(HeaderValueInterface::class);
     foreach ($value->split(',') as $allow) {
         $values = $values->add(new AllowValue((string) $allow->trim()->toUpper()));
     }
     return new Allow($values);
 }
開發者ID:innmind,項目名稱:http,代碼行數:11,代碼來源:AllowFactory.php

示例9: make

 public function make(Str $name, Str $value) : HeaderInterface
 {
     if ($this->factories->contains((string) $name->toLower())) {
         return $this->factories->get((string) $name->toLower())->make($name, $value);
     }
     $values = new Set(HeaderValueInterface::class);
     foreach ($value->split(',') as $headerValue) {
         $values = $values->add(new HeaderValue((string) $headerValue->trim()));
     }
     return new Header((string) $name, $values);
 }
開發者ID:innmind,項目名稱:http,代碼行數:11,代碼來源:DefaultFactory.php

示例10: make

 public function make(Str $name, Str $value) : HeaderInterface
 {
     if ((string) $name->toLower() !== 'accept') {
         throw new InvalidArgumentException();
     }
     $values = new Set(HeaderValueInterface::class);
     foreach ($value->split(',') as $accept) {
         $matches = $accept->getMatches('~(?<type>[\\w*]+)/(?<subType>[\\w*]+)(?<params>(; ?\\w+=\\"?[\\w\\-.]+\\"?)+)?~');
         $values = $values->add(new AcceptValue((string) $matches->get('type'), (string) $matches->get('subType'), $this->buildParams($matches->hasKey('params') ? $matches->get('params') : new Str(''))));
     }
     return new Accept($values);
 }
開發者ID:innmind,項目名稱:http,代碼行數:12,代碼來源:AcceptFactory.php

示例11: make

 public function make(Str $name, Str $value) : HeaderInterface
 {
     if ((string) $name->toLower() !== 'accept-charset') {
         throw new InvalidArgumentException();
     }
     $values = new Set(HeaderValueInterface::class);
     foreach ($value->split(',') as $accept) {
         $matches = $accept->getMatches('~(?<charset>[a-zA-Z0-9\\-_:\\(\\)]+)(; ?q=(?<quality>\\d+(\\.\\d+)?))?~');
         $values = $values->add(new AcceptCharsetValue((string) $matches->get('charset'), new Quality($matches->hasKey('quality') ? (double) (string) $matches->get('quality') : 1)));
     }
     return new AcceptCharset($values);
 }
開發者ID:innmind,項目名稱:http,代碼行數:12,代碼來源:AcceptCharsetFactory.php

示例12: make

 public function make(Str $name, Str $value) : HeaderInterface
 {
     if ((string) $name->toLower() !== 'accept-language') {
         throw new InvalidArgumentException();
     }
     $values = new Set(HeaderValueInterface::class);
     foreach ($value->split(',') as $accept) {
         $matches = $accept->getMatches('~(?<lang>([a-zA-Z0-9]+(-[a-zA-Z0-9]+)*|\\*))(; ?q=(?<quality>\\d+(\\.\\d+)?))?~');
         $values = $values->add(new AcceptLanguageValue((string) $matches->get('lang'), new Quality($matches->hasKey('quality') ? (double) (string) $matches->get('quality') : 1)));
     }
     return new AcceptLanguage($values);
 }
開發者ID:innmind,項目名稱:http,代碼行數:12,代碼來源:AcceptLanguageFactory.php

示例13: make

 public function make(Str $name, Str $value) : HeaderInterface
 {
     if ((string) $name->toLower() !== 'cache-control') {
         throw new InvalidArgumentException();
     }
     $splits = $value->split(',');
     $values = new Set(HeaderValueInterface::class);
     foreach ($splits as $split) {
         $split = $split->trim();
         switch (true) {
             case $split->match('~^max-age=\\d+$~'):
                 $values = $values->add(new CacheControlValue\MaxAge((int) (string) $split->substring(8)));
                 break;
             case $split->match('~^max-stale(=\\d+)?$~'):
                 $values = $values->add(new CacheControlValue\MaxStale($split->length() > 10 ? (int) (string) $split->substring(10) : 0));
                 break;
             case $split->match('~^min-fresh=\\d+$~'):
                 $values = $values->add(new CacheControlValue\MinimumFresh((int) (string) $split->substring(10)));
                 break;
             case (string) $split === 'must-revalidate':
                 $values = $values->add(new CacheControlValue\MustRevalidate());
                 break;
             case $split->match('~^no-cache(="?\\w+"?)?$~'):
                 $matches = $split->getMatches('~^no-cache(="?(?<field>\\w+)"?)?$~');
                 $values = $values->add(new CacheControlValue\NoCache($matches->hasKey('field') ? (string) $matches->get('field') : ''));
                 break;
             case (string) $split === 'no-store':
                 $values = $values->add(new CacheControlValue\NoStore());
                 break;
             case (string) $split === 'no-transform':
                 $values = $values->add(new CacheControlValue\NoTransform());
                 break;
             case (string) $split === 'only-if-cached':
                 $values = $values->add(new CacheControlValue\OnlyIfCached());
                 break;
             case $split->match('~^private(="?\\w+"?)?$~'):
                 $matches = $split->getMatches('~^private(="?(?<field>\\w+)"?)?$~');
                 $values = $values->add(new CacheControlValue\PrivateCache($matches->hasKey('field') ? (string) $matches->get('field') : ''));
                 break;
             case (string) $split === 'proxy-revalidate':
                 $values = $values->add(new CacheControlValue\ProxyRevalidate());
                 break;
             case (string) $split === 'public':
                 $values = $values->add(new CacheControlValue\PublicCache());
                 break;
             case $split->match('~^s-maxage=\\d+$~'):
                 $values = $values->add(new CacheControlValue\SharedMaxAge((int) (string) $split->substring(9)));
                 break;
         }
     }
     return new CacheControl($values);
 }
開發者ID:innmind,項目名稱:http,代碼行數:52,代碼來源:CacheControlFactory.php

示例14: make

 public function make(Str $name, Str $value) : HeaderInterface
 {
     if ((string) $name->toLower() !== 'link') {
         throw new InvalidArgumentException();
     }
     $links = new Set(HeaderValueInterface::class);
     foreach ($value->split(',') as $link) {
         $matches = $link->trim()->getMatches('~^<(?<url>\\S+)>(?<params>(; ?\\w+=\\"?[\\w\\-.]+\\"?)+)?$~');
         $params = $this->buildParams($matches->hasKey('params') ? $matches->get('params') : new Str(''));
         $links = $links->add(new LinkValue(Url::fromString((string) $matches->get('url')), $params->contains('rel') ? $params->get('rel')->value() : 'related', $params->contains('rel') ? $params->remove('rel') : $params));
     }
     return new Link($links);
 }
開發者ID:innmind,項目名稱:http,代碼行數:13,代碼來源:LinkFactory.php

示例15: getPaymentCart

 public function getPaymentCart()
 {
     $values = Session::get('payment');
     foreach ($values as $key => $value) {
         $product[$key]['name'] = $value['name'];
         $price = round((int) $value['price'] / 21270);
         $product[$key]['price'] = $price;
         $product[$key]['quantity'] = 1;
         $product[$key]['product_id'] = $value['id'];
     }
     $tmpTransaction = new TmpTransaction();
     $st = Str::random(16);
     $baseUrl = URL::to('/product/payment/return?order_id=' . $st);
     // $value[1]['name'] = "sản phẩm 1";
     // $value[1]['price'] = "20000";
     // $value[1]['quantity'] = "1";
     // $value[1]['product_id'] = "3";
     // $value[2]['name'] = "sản phẩm 2";
     // $value[2]['price'] = "20000";
     // $value[2]['quantity'] = "1";
     // $value[2]['product_id'] = "3";
     $payment = $this->makePaymentUsingPayPalCart($product, 'USD', "{$baseUrl}&success=true", "{$baseUrl}&success=false");
     $tmpTransaction->order_id = $st;
     $tmpTransaction->payment_id = $payment->getId();
     $tmpTransaction->save();
     header("Location: " . $this->getLink($payment->getLinks(), "approval_url"));
     exit;
     return "index";
 }
開發者ID:VoDongMy,項目名稱:VoDongMy,代碼行數:29,代碼來源:PaymentController.php


注:本文中的Str類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。