Project

General

Profile

1 1559 Luisehahne
<?php
2
3
function qx_const($const) {
4
        $retval = '{'.$const.'}';
5
        if(defined($const)) {
6
                $retval = constant($const);
7
        }
8
        return $retval;
9
}