Project

General

Profile

1
<?php
2

    
3
function qx_const($const) {
4
        $retval = '{'.$const.'}';
5
        if(defined($const)) {
6
                $retval = constant($const);
7
        }
8
        return $retval;
9
}
(8-8/44)