Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97886495
PhutilurisprintfTestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jan 7, 05:04
Size
411 B
Mime Type
text/x-php
Expires
Thu, Jan 9, 05:04 (2 d)
Engine
blob
Format
Raw Data
Handle
23430917
Attached To
rPHU libphutil
PhutilurisprintfTestCase.php
View Options
<?php
final
class
PhutilurisprintfTestCase
extends
PhutilTestCase
{
public
function
testurisprintf
()
{
$this
->
assertEqual
(
'x.com?a=huh%3F'
,
urisprintf
(
'x.com?a=%s'
,
'huh?'
));
$this
->
assertEqual
(
'/a/origin%252Fmaster/z/'
,
urisprintf
(
'/a/%p/z/'
,
'origin/master'
));
$this
->
assertEqual
(
'y.com?%21&%23'
,
vurisprintf
(
'y.com?%s&%s'
,
array
(
'!'
,
'#'
)));
}
}
Event Timeline
Log In to Comment