-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
68 lines (58 loc) · 1.43 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
<?php
/**
* Este arquivo deve conter funções que estaram disponível no escopo global
* Coloque aqui as funções para ajustar algum comportamento incorreto
*/
/**
* Lê a configuração dos arquivos
* @return []
*/
function zion_get_config_all(){
$all = [];
// configuração básica
$json = zion_get_config("config.json",false);
$json = is_array($json)?$json:array();
foreach($json AS $key => $value){
$all[$key] = $value;
}
// configuração do ambiente
$json = zion_get_config(\zion\ENV.".json",false);
$json = is_array($json)?$json:array();
foreach($json AS $key => $value){
$all[$key] = $value;
}
return $all;
}
/**
* Lê a configuração de um arquivo
* @param string $filename
* @param boolean $stopOnError
* @return []
*/
function zion_get_config($filename,$stopOnError=true){
$file = \zion\APP_ROOT.$filename;
if(!file_exists($file)){
if(!$stopOnError){
return null;
}
http_response_code(500);
echo "Arquivo de configuração {$filename} não encontrado";
exit();
}
$json = json_decode(file_get_contents($file),true);
if(!is_array($json)){
return null;
}
return $json;
}
function zion_escape_dbval($val){
return addslashes($val);
}
function php5_count($arg){
if(is_array($arg)){
return count($arg);
}else{
return 0;
}
}
?>