PHP undefined Constant Error while using not !defined
value,任何其他选择。
我的代码:-
<a href="http://'.<?php !defined(DOMAIN) ? print('localhost') : print(MY_DOMAIN); ?>.'" target='_blank'>My Website</a>
但这给了我错误:
<a href="http://<br />
<b>Notice</b>: Use of undefined constant DOMAIN - assumed 'DOMAIN' in <b>C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\url.php</b> on line <b>3</b><br />localhost" target='_blank'>My Website</a>
如果我不使用它不应该只打印本地主机:-
define('DOMAIN', 'example.com');
是否有其他方法可以指定 !defined 值?