-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
110 lines (78 loc) · 2.44 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
//scripts con todas las funciones de la aplicacion
//trar el espacio restante en memoria de almacenamiento
//get free space on disk drive
function getDiskSpace(){
$bytes = disk_free_space(".");
$si_prefix = array( 'B', 'KB', 'MB', 'GB', 'TB', 'EB', 'ZB', 'YB' );
$base = 1024;
$class = min((int)log($bytes , $base) , count($si_prefix) - 1);
echo sprintf('%1.2f' , $bytes / pow($base,$class)) . ' ' . $si_prefix[$class] . '<br />';
}
//obtiene la informacion de que sistema opratico tiene el servidor
//get information about operative system
function getSystemInfo(){
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'){
echo 'Este un servidor usando Windows!';
}else {
echo 'Este servidor usa linux!';
}
}
//obtener informacion sobre la memorya utilizada
//get information about memory usage
function getMemoryUsage(){
$baseMemory = memory_get_usage();
$si_prefix = array( 'B', 'KB', 'MB', 'GB', 'TB', 'EB', 'ZB', 'YB' );
$base = 1024;
$class = min((int)log($baseMemory , $base) , count($si_prefix) - 1);
echo sprintf('%1.2f' , $baseMemory / pow($base,$class)) . ' ' . $si_prefix[$class] . '<br />';
}
//fehca y hora
//date time
function getDateTime(){
echo date('l jS \of F Y h:i A');
echo '<br />';
}
//obtiene el nombre de usuario del sistema
//get username of system
function getUserSystem(){
echo 'User actual: ' . get_current_user();
}
//obtiene informacion detallada del systema operativo
//get more detailed about operative system
function getPcInformation(){
echo php_uname();
}
//funcion para crear una tabla
//function for create a table
function create_table($id, $ancho=3,$alto=3){
echo "<table id=\"" . $id . "\" border=1>";
for ($i=0; $i <$alto; $i++) {
echo "<tr>";
for ($j=0; $j < $ancho; $j++) {
echo "<td>";
echo "hola";
echo "</td>";
}
echo "</tr>";
}
echo "</table>";
}
//funcion de login
//function login
function login($name,$pass,$session){
$arrayNames = array(
'leandro' => 'lean',
'gabriel' => 'gaby',
'oscar' => 'osqui',
'root' => 'nano',
);
if ((isset($name))&&(isset($pass))&&(isset($session))) {
if ($arrayNames[$name]==$pass)
return true;
else{
return false;
}
}
}
?>