如果非空
则输出原始值 hexingxing.cn
<?php
$domain = "hexingxing.cn";
$replace = "hxx.tw";
if (empty($domain)) {
echo $replace; //echo "hxx.tw";
}
else {
echo $domain;
}
?>
如果为空
则输出替换值 hxx.tw
<?php
$domain = "";
$replace = "hxx.tw";
if (empty($domain)) {
echo $replace; //echo "hxx.tw";
}
else {
echo $domain;
}
?>
函数调用
函数 function hexingxing(){}
调用 hexingxing();
方案一
作用域内部常量:$isValue = "";
<?php
function hexingxing(){
$isValue = "";
$disabled = '无效';
$enabled = '有效';
if (empty($isValue)) {
echo $disabled;
}
else {
echo $enabled;
}
}
?>
<?php hexingxing(); ?>
方案二
作用域全局变量:global $staffId;
<?php
function hexingxing(){
global $staffId;
$disabled = '无效';
$enabled = '有效';
if (empty($staffId)) {
echo $disabled;
}
else {
echo $enabled;
}
}
?>
<?php hexingxing(); ?>
友情提示:本站所有文章,如无特殊说明或标注,均为何星星原创发布。与此同时,趋于近年来本站的文章内容频繁被他站盗用与机器采集,现已全局禁用网站文字内容操作,了解详情或转载文章请 点此 继续!
0 条评论