Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F805207
index.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Feb 27, 12:29 AM
Size
480 B
Mime Type
text/x-php
Expires
Sat, Mar 1, 12:29 AM (2 h, 3 m)
Engine
blob
Format
Raw Data
Handle
577200
Attached To
rINP In-Portal
index.php
View Options
<?php
$start
=
getmicrotime
();
define
(
'FULL_PATH'
,
realpath
(
dirname
(
__FILE__
)));
define
(
'APPLICATION_CLASS'
,
'MyApplication'
);
include_once
(
FULL_PATH
.
'/kernel/kernel4/startup.php'
);
$application
=&
kApplication
::
Instance
();
$application
->
Init
();
$application
->
Run
();
$application
->
Done
();
$end
=
getmicrotime
();
//print_pre(get_included_files());
function
getmicrotime
()
{
list
(
$usec
,
$sec
)
=
explode
(
" "
,
microtime
());
return
((
float
)
$usec
+
(
float
)
$sec
);
}
?>
Event Timeline
Log In to Comment