大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
1、首先需要新建一个246.php。
成都创新互联专注于召陵网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供召陵营销型网站建设,召陵网站制作、召陵网页设计、召陵网站官网定制、小程序开发服务,打造召陵网络公司原创品牌,更为您提供召陵网站排名全网营销落地服务。
2、然后需要按照图示代码输入php网页的结构(?php?)。
3、然后需要按照图示代码声明PHP与浏览器交互的文件类型和编码。
4、function_exists() 函数的作用: 如果函数已被定义就返回 TRUE,如图所示为其语法结构。
5、然后需要按照图示代码使用 function_exists() 函数判断 show() 函数是否已经被定义。
6、运行该网页,输出 function_exists() 函数的判断结果,如图显示函数不存在。
但是如果数组比较大的时候,性能就会下降,运行的就会久一点,那如果针对在大数组情况下做优化呢,下面说两种方法(都是通过自定义函数来实现):
1.数组key与value翻转,通过isset判断key是否存在于数组中
复制代码
代码如下:
/**
*
in_array
is
too
slow
when
array
is
large
*/
public
static
function
inArray($item,
$array)
{
$flipArray
=
array_flip($array);
return
isset($flipArray[$item]);
}
大家可能也会问为什么不用
array_key_exists
来做判断二用isset呢?
下面看下array_key_exists()
与
isset()
的对比:
isset()对于数组中为NULL的值不会返回TRUE,而array_key_exists()会。
复制代码
代码如下:?php
$search_array
=
array('first'
=
null,
'second'
=
4);
//
returns
false
isset($search_array['first']);
//
returns
true
array_key_exists('first',
$search_array);
?
函数:in_array -- 检查数组中是否存在某个值定义:bool in_array ( mixed needle, array haystack [, bool strict] )在haystack 中搜索 needle,如果找到则返回 TRUE,否则返回 FALSE。 如果第三个参数 strict 的值为 TRUE 则 in_array() 函数还会检查 needle 的类型是否和 haystack 中的相同。 例子1. in_array() 例子?php $os = array("Mac", "NT", "Irix", "Linux"); if (in_array("Irix", $os)) { echo "Got Irix";}if (in_array("mac", $os)) { echo "Got mac";}? 第二个条件失败,因为 in_array() 是区分大小写的,所以以上程序显示为: Got Irix 例子2. in_array() 严格类型检查例子?php $a = array('1.10', 12.4, 1.13); if (in_array('12.4', $a, true)) { echo "'12.4' found with strict check\n";}if (in_array(1.13, $a, true)) { echo "1.13 found with strict check\n";}? 上例将输出:1.13 found with strict check 例子3. in_array() 中用数组作为 needle?php $a = array(array('p', 'h'), array('p', 'r'), 'o'); if (in_array(array('p', 'h'), $a)) { echo "'ph' was found\n";}if (in_array(array('f', 'i'), $a)) { echo "'o' was found\n";}?
HTML
HEAD
TITLE常用的数值判断函数/TITLE
/HEAD
BODY
?
//判断数组
$colors =
array("red", "blue", "green");
if(is_array($colors))
{
print("colors
is an array"."br");
}
//双精度数判断
$Temperature = 15.23;
if(is_double($Temperature))
{
print("Temperature is a
double"."br");
}
//整数判断
$PageCount = 2234;
if(is_integer($PageCount))
{
print("$PageCount is an
integer"."br");
}
//对象判断
class widget
{
var $name;
var $length;
}
$thing = new widget;
if(is_object($thing))
{
print("thing is an object"."br");
}
//字符判断
$Greeting =
"Hello";
if(is_string($Greeting))
{
print("Greeting is a
string"."br");
}
?
/BODY
/HTML