Quick actions

cmd+k|ctrl+k

Navigation

Languages

test_defined

Snippet info

Language

Php

Visibility

public

Author

fenghestudio

Created

2019-09-21T06:04:13Z

Updated

2019-09-21T06:04:13Z

<?php

/* Note the use of quotes, this is important.  This example is checking
 * if the string 'TEST' is the name of a constant named TEST */
if (defined('TEST')) {
    echo TEST;

}
?>
INFO