php函数

1、in_array():检查数组中是否存在某个值

               bool in_array ( mixed needle, array haystack [, bool strict])

               检查needle是否在数组haystack中,

             

             如果第三个参数 strict 的值为 TRUEin_array() 函数还会检查 needle类型是否和 haystack 中的相同。

注: 如果 needle 是字符串,则比较是区分大小写的。


一维数组实例:

<?php
$os
= array ("Mac", "NT", "Irix", "Linux");
if (
in_array ("Irix", $os)) {
print
"Got Irix";
}
if (
in_array ("mac", $os)) {
print
"Got mac";
}
?> 

二维数组实例:

<?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
"'fi' was found\n";
}
if (
in_array('o', $a)) {
echo
"'o' was found\n";
}


2、mysql_affected_rows() 取得前一次 MySQL 操作所影响的记录行数

          实例:

                    mysql_connect('localhost','root','123');
                    mysql_select_db('news');
                    mysql_query("set names utf8");

                     $res = mysql_query("select id,title,content,newdate,c_name from new join category on new.news_cate_id=category.news_cate_id");
                      if(mysql_affected_rows()>0){
                   $new = array();
                    while($row = mysql_fetch_assoc($res)){
                          $new[]=$row;
                             }

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值