php 中的function函数,不会用呢解决思路
程序员文章站
2022-05-25 19:19:51
...
php 中的function函数,不会用呢
我的一个one.php页面下:
include("conn.php");
$rs=mysql_query("
(
select op_values from table1 where op.id=11
)union
(
select op_values from table2 where op.id=12
)
while($row=mysql_fetch_array($rs))
{
echo "$row[op_values]
";
}
?>
two.php页面下:
include("conn.php");
define('ID_OUTPUT_VOLTAGE', 31);
define('ID_OUTPUT_CURRENT', 35);
$V = getProductAttributes(ID_V, $p_id);
$A = getProductAttributes(ID_A, $p_id);
function getProductAttributes(){
这里面不会写呢,想把sql的两个值op_values给弄过来,echo 出来
}
然后w=V*A;
------解决方案--------------------
我的一个one.php页面下:
include("conn.php");
$rs=mysql_query("
(
select op_values from table1 where op.id=11
)union
(
select op_values from table2 where op.id=12
)
while($row=mysql_fetch_array($rs))
{
echo "$row[op_values]
";
}
?>
two.php页面下:
include("conn.php");
define('ID_OUTPUT_VOLTAGE', 31);
define('ID_OUTPUT_CURRENT', 35);
$V = getProductAttributes(ID_V, $p_id);
$A = getProductAttributes(ID_A, $p_id);
function getProductAttributes(){
这里面不会写呢,想把sql的两个值op_values给弄过来,echo 出来
}
然后w=V*A;
------解决方案--------------------
- PHP code
while($row=mysql_fetch_array($rs)) { // echo "$row[op_values]
"; //如果只是为了传值就不用输出 $arr[]= $row[op_values]; }相关文章
相关视频
下一篇: PHP入门速成教程_PHP教程
推荐阅读
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
PHP5.2中date()函数显示时间与北京时间相差8小时的解决办法
-
PHP中iconv函数转码时截断字符问题的解决方法
-
PHP中的session永不过期的解决思路及实现方法分享
-
php中mail函数发送邮件失败的解决方法
-
事件函数function(e){}中e的问题解决办法
-
Ubuntu中启用php的mail()函数并解决发送邮件速度慢问题
-
PHP中file_exists函数不支持中文名的解决方法
-
PHP中file_get_contents函数抓取https地址出错的解决方法(两种方法)
-
PHP中register_shutdown_function函数的基础介绍与用法详解