Home > Backend Development > PHP Tutorial > How to prevent repeated definition of constants in PHP

How to prevent repeated definition of constants in PHP

WBOY
Release: 2016-07-25 08:59:12
Original
1682 people have browsed it
  1. //To prevent repeated definition of constants, borrow
  2. defined('YII_DEBUG') or define('YII_DEBUG',true);
  3. defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL) in Yii ',3);
  4. //edit bbs.it-home.org
  5. ?>
Copy code

Instructions:

The or syntax is to execute the expression on the right when the expression on the left is flase. defined is to determine whether the constant is defined, and define is to define the constant. defined('YII_DEBUG') or define('YII_DEBUG',true); //Written like this, when the constant is defined as false, the constant is defined


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template