15 lines
257 B
PHP
15 lines
257 B
PHP
|
<?php
|
||
|
|
||
|
define('DIR_ALVEOLATA', __DIR__);
|
||
|
|
||
|
define('UNSET_INTEGER', -7777777);
|
||
|
// define('UNSET_INTEGER', null);
|
||
|
|
||
|
define('UNSET_STRING', '_unset_');
|
||
|
// define('UNSET_STRING', null);
|
||
|
|
||
|
define('UNSET_ARRAY', [UNSET_STRING]);
|
||
|
// define('UNSET_ARRAY', null);
|
||
|
|
||
|
?>
|