0

PHP undefined Constant Error while using not !definedvalue,任何其他选择。

我的代码:-

<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 值?

4

1 回答 1

2

您必须将常量的名称用引号括起来。

<a href="http://'.<?php !defined("DOMAIN") ? print('localhost') : print(DOMAIN); ?>.'" target='_blank'>My Website</a>

否则它会像这样工作:(因为你要传递 const 的值)

define("DOMAIN", 'example.com');

defined(DOMAIN)将等于defined('example.com')

于 2013-07-03T17:46:44.503 回答