git://git.onelab.eu
/
monitor.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
remove a lot of deprecated files ;
[monitor.git]
/
zabbix
/
getdefines.php
1
<?php
2
3
$path = '/var/www/html/zabbix/include';
4
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
5
6
require "defines.inc.php";
7
8
$const = get_defined_constants(true);
9
foreach ( $const['user'] as $k => $v ):
10
if ( is_int($v) ):
11
print "$k=$v\n";
12
endif;
13
endforeach;
14
15
?>