Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F124467555
__init_script__.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
Sat, Aug 2, 16:48
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Aug 4, 16:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27830471
Attached To
rPHU libphutil
__init_script__.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
$root
=
dirname
(
dirname
(
__FILE__
));
require_once
$root
.
'/src/__phutil_library_init__.php'
;
/**
* Adjust the runtime language configuration to be reasonable and inline with
* expectations.
*/
function
__phutil_adjust_php_ini
()
{
error_reporting
(
E_ALL
|
E_STRICT
);
$config_map
=
array
(
'display_errors'
=>
true
,
'error_log'
=>
null
,
);
foreach
(
$config_map
as
$config_key
=>
$config_value
)
{
ini_set
(
$config_key
,
$config_value
);
}
// There may be some kind of auto-prepend script configured which starts an
// output buffer. Discard any such output buffers so messages can be sent to
// stdout (if a user wants to capture output from a script, there are a large
// number of ways they can accomplish it legitimately; historically, we ran
// into this on only one install which had some bizarre configuration, but it
// was difficult to diagnose because the symptom is "no messages of any
// kind").
while
(
ob_get_level
()
>
0
)
{
ob_end_clean
();
}
}
__phutil_adjust_php_ini
();
Event Timeline
Log In to Comment