我在if
发表声明时遇到问题:
<?php if (isset($detail) == 1) { ?>
// code if detail variable exists and is equal to 1
<?php } else { ?>
// code if detail variable doesn't exist or is not equal 1
<?php }?>
由于某种原因,这种情况不起作用。我怎样才能解决这个if
问题,所以它会起作用?
我在if
发表声明时遇到问题:
<?php if (isset($detail) == 1) { ?>
// code if detail variable exists and is equal to 1
<?php } else { ?>
// code if detail variable doesn't exist or is not equal 1
<?php }?>
由于某种原因,这种情况不起作用。我怎样才能解决这个if
问题,所以它会起作用?