你查出来的值是不是 不等于1 意思是 等于 0,-1,3,4,6,8 的话if都成立的,你看看 cdt[0] 的值是多少,,,
成都创新互联公司主营桐乡网站建设的网络公司,主营网站建设方案,重庆App定制开发,桐乡h5小程序开发搭建,桐乡网站营销推广欢迎桐乡等地区企业咨询
进入php源程序目录中的ext目录中,这里存放着各个扩展模块的源代码,选择你需要的模块,比如curl模块:cd curl
执行phpize生成编译文件,phpize在PHP安装目录的bin目录下
/usr/local/php5/bin/phpize
运行时,可能会报错:Cannot find autoconf. Please check your autoconf installation and
the $PHP_AUTOCONF
environment variable is set correctly and then rerun this
script.,需要安装autoconf:
yum install autoconf(RedHat或者CentOS)、apt-get install
autoconf(Ubuntu Linux)
/usr/local/php5/bin/php -v
执行这个命令时,php会去检查配置文件是否正确,如果有配置错误,
这里会报错,可以根据错误信息去排查!
你这段代码问题很多... 一个函数只能有一个返回值, 甚至还少了个大括号
你可以返回一个数组, 里面包含$m, $n, 例如
?php
$a=1;$b=1000;
$result = solve($a,$b);
function solve($aa,$bb){
$m=array();
$n=array();
for($i=$aa;$i1000;$i++){
$m[$i]=$i;
$n[$i]=1000-$i;
}
return array($m, $n); //返回一个数组
}
var_dump($result);
或者定义个全局的$m, $n
$a=1;$b=1000;
solve($a,$b);
function solve($aa,$bb){
global $m,$n;
for($i=$aa;$i1000;$i++){
$m[$i]=$i;
$n[$i]=1000-$i;
}
return array($m, $n);
}
var_dump($m);
var_dump($n);
array_column
(PHP 5 = 5.5.0, PHP 7)
array_column — 返回数组中指定的一列
说明
array_column ( array $input , mixed $column_key [, mixed $index_key = null ] ) : array
array_column() 返回input数组中键值为column_key的列, 如果指定了可选参数index_key,那么input数组中的这一列的值将作为返回数组中对应值的键。
参数
input
需要取出数组列的多维数组。 如果提供的是包含一组对象的数组,只有 public 属性会被直接取出。 为了也能取出 private 和 protected 属性,类必须实现 __get() 和 __isset() 魔术方法。
column_key
需要返回值的列,它可以是索引数组的列索引,或者是关联数组的列的键,也可以是属性名。 也可以是null,此时将返回整个数组(配合index_key参数来重置数组键的时候,非常管用)
index_key
作为返回数组的索引/键的列,它可以是该列的整数索引,或者字符串键值。
返回值
从多维数组中返回单列数组。
更新日志
版本 说明
7.0.0 input 参数现在可以是包含对象的数组。
亲,如果你的返回结果集不是一条记录的话,需要循环获得,你直接while($row
=
$mysql_fetch_array($result)){
$data[]=$row;
}
就行了。