php函数有2个参数

时间:2013-06-10 16:43:41

标签: php function

我有一个带有2个参数的函数。这是

function listBoats($con,$table){
    //get record set for all boats sort them by their "sort" number
    $queryBoat = "SELECT * FROM " .$table. " WHERE `id` <> 'mainPage' ORDER BY `sort` LIMIT 0, 1000";
    $result = mysqli_query($con,$queryBoat);
    return $result;
}

这就是我如何称呼它

$result = listBoats($con,"CSINSTOCK"); //run query to list all the boats in the CSINSTOCK table

我无法让它发挥作用。但是如果我在函数中添加变量$table = "CSINSTOCK"它确实有效。为什么函数不通过"CSINSTOCK"变量?

1 个答案:

答案 0 :(得分:-1)

我建议您使用PDO。这是一个例子

示例 这是你的dbc类(dbc.php)

<?php

class dbc {

    public $dbserver = 'server';
    public $dbusername = 'user';
    public $dbpassword = 'pass';
    public $dbname = 'db';

    function openDb() {    
        try {
            $db = new PDO('mysql:host=' . $this->dbserver . ';dbname=' . $this->dbname . ';charset=utf8', '' . $this->dbusername . '', '' . $this->dbpassword . '');
        } catch (PDOException $e) {
            die("error, please try again");
        }        
        return $db;
    }

    function getAllData($qty) {
        //prepared query to prevent SQL injections
        $query = "select * from TABLE where qty = ?";
        $stmt = $this->openDb()->prepare($query);
        $stmt->bindValue(1, $qty, PDO::PARAM_INT);
        $stmt->execute();
        $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
        return $rows;
    }    
?>

你的PHP页面:

<?php 
require "dbc.php";

$getList = $db->getAllData(25);

foreach ($getList as $key=> $row) {
         echo $row['columnName'] .' key: '. $key;
    }

如果您可以访问数据库,则应该能够执行所需的操作。