本文整理汇总了PHP中uri::query_remove方法的典型用法代码示例。如果您正苦于以下问题:PHP uri::query_remove方法的具体用法?PHP uri::query_remove怎么用?PHP uri::query_remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类uri
的用法示例。
在下文中一共展示了uri::query_remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Query_Remove
/**
* @test
* @depends URI\GenerateTest::Reset
*/
public function Query_Remove()
{
// 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&test=true#fragment');
// Check For Errors
$this->assertEmpty($uri1->error);
$this->assertEmpty($uri2->error);
$this->assertNull($uri1->query_remove('a'));
$this->assertEquals($uri1->input, $uri1->str());
$this->assertNull($uri2->query_remove('query'));
$this->assertEquals('https://user:pass@example.com:777/path/to/script.php?test=true#fragment', $uri2->str());
$this->assertNull($uri2->query_remove('test'));
$this->assertEquals('https://user:pass@example.com:777/path/to/script.php#fragment', $uri2->str());
}