我在类中有一个可选变量:
private $port = DB_PORT; // The port number where the MySQL is listening.
如果用户没有指定没有定义变量,php会发出通知:
Notice: Use of undefined constant DB_PORT - assumed 'DB_PORT'
如何修改我的代码告诉PHP忽略该变量的任何错误?
答案 0 :(得分:1)
利用defined功能处理您必须面对的各种情况。
if (!defined('DB_PORT')) throw ew MyException("DB_PORT must be configured");