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


PHP uri::prepend方法代码示例

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


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

示例1: Invalid_Section_Errors

 /**
  * @test
  * @depends URI\ParseTest::Advanced_Parsing
  */
 public function Invalid_Section_Errors()
 {
     $uri1 = new \uri('https://user:pass@example.com:777/path/to/script.php?query=str#fragment');
     // Invalid section to modify
     $this->assertEquals(FALSE, $uri1->append('invalid', ''));
     $this->assertEquals(FALSE, $uri1->prepend('invalid', ''));
     $this->assertEquals(FALSE, $uri1->replace('invalid', ''));
 }
开发者ID:projectcleverweb,项目名称:php-uri,代码行数:12,代码来源:02_ErrorsTest.php

示例2: Modify_Fragment

 /**
  * @test
  * @depends URI\GenerateTest::Reset
  */
 public function Modify_Fragment()
 {
     // Test both when there is and isn't pre-existing data
     $uri1 = new \uri('example.com');
     $uri2 = new \uri('https://user:pass@example.com:777/path/to/script.php?query=str#fragment');
     // Check For Errors
     $this->assertEmpty($uri1->error);
     $this->assertEmpty($uri2->error);
     // Check Replace
     $this->assertEquals('example.com#top', $uri1->replace('FRAGMENT', '#top'));
     $this->assertEquals('example.com#header', $uri1->replace('FRAGMENT', 'header'));
     $this->assertEquals('https://user:pass@example.com:777/path/to/script.php?query=str#footer', $uri2->replace('FRAGMENT', 'footer'));
     // Check Prepend
     $this->assertEquals('example.com#custom-header', $uri1->prepend('FRAGMENT', 'custom-'));
     // Check Append
     $this->assertEquals('https://user:pass@example.com:777/path/to/script.php?query=str#footer-end', $uri2->append('FRAGMENT', '-end'));
 }
开发者ID:projectcleverweb,项目名称:php-uri,代码行数:21,代码来源:04_ModifyTest.php


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