Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98056974
general.inc.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
Thu, Jan 9, 03:50
Size
2 KB
Mime Type
text/x-c
Expires
Sat, Jan 11, 03:50 (2 d)
Engine
blob
Format
Raw Data
Handle
23489926
Attached To
R3600 invenio-infoscience
general.inc.php
View Options
## $Id$
## This file is part of the CERN Document Server Software (CDSware).
## Copyright (C) 2002 CERN.
##
## The CDSware is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## The CDSware is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with CDSware; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
## read config variables:
#include "config.wml"
#include "configbis.wml"
<?
<
protect
>
## $Id$
## DO NOT EDIT THIS FILE! IT WAS AUTOMATICALLY GENERATED FROM CDSware WML SOURCES.
</
protect
>
//----------------------------------------------------------------------
// General purpose functions
//----------------------------------------------------------------------
function
array2str
(
$a
){
reset
(
$a
);
$t
=
"["
;
while
(
current
(
$a
))
{
$t
.=
current
(
$a
).
","
;
next
(
$a
);
}
return
(
$t
.
"]"
);
}
//----------------------------------------------------------------------
function
getmicrotime
(){
list
(
$usec
,
$sec
)
=
explode
(
" "
,
microtime
());
return
((
float
)
$usec
+(
float
)
$sec
);
}
//----------------------------------------------------------------------
function
printtime
(){
$ti
=
gettimeofday
();
print
"<font color=
\"
red
\"
>["
.
$ti
[
"sec"
].
":"
.
$ti
[
"usec"
].
"]</font><br>"
;
}
//----------------------------------------------------------------------
function
printDuration
(
$cad
,
$tini
)
{
$t1
=
$tini
[
"sec"
]*
1000000
+
$tini
[
"usec"
];
$tnow
=
gettimeofday
();
$t2
=
$tnow
[
"sec"
]*
1000000
+
$tnow
[
"usec"
];
$dur
=(
$t2
-
$t1
)/
1000000
;
print
"<br><font color=
\"
blue
\"
>$cad: $dur sec</font><br>"
;
}
//----------------------------------------------------------------------
function
text2HTML
(
$text
)
{
$text
=
htmlspecialchars
(
$text
);
$text
=
str_replace
(
"
\n
"
,
"<br>"
,
$text
);
$text
=
str_replace
(
" "
,
" "
,
$text
);
return
$text
;
}
//----------------------------------------------------------------------
?>
Event Timeline
Log In to Comment