Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91659551
AphrontPHPHTTPSink.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
Wed, Nov 13, 04:53
Size
944 B
Mime Type
text/x-php
Expires
Fri, Nov 15, 04:53 (2 d)
Engine
blob
Format
Raw Data
Handle
22302569
Attached To
rPH Phabricator
AphrontPHPHTTPSink.php
View Options
<?php
/**
* Concrete HTTP sink which uses "echo" and "header()" to emit data.
*/
final
class
AphrontPHPHTTPSink
extends
AphrontHTTPSink
{
protected
function
emitHTTPStatus
(
$code
,
$message
=
''
)
{
if
(
$code
!=
200
)
{
$header
=
"HTTP/1.0 {$code}"
;
if
(
strlen
(
$message
))
{
$header
.=
" {$message}"
;
}
header
(
$header
);
}
}
protected
function
emitHeader
(
$name
,
$value
)
{
header
(
"{$name}: {$value}"
,
$replace
=
false
);
}
protected
function
emitData
(
$data
)
{
echo
$data
;
// NOTE: We don't call flush() here because it breaks HTTPS under Apache.
// See T7620 for discussion. Even without an explicit flush, PHP appears to
// have reasonable behavior here: the echo will block if internal buffers
// are full, and data will be sent to the client once enough of it has
// been buffered.
}
protected
function
isWritable
()
{
return
!
connection_aborted
();
}
}
Event Timeline
Log In to Comment