所以在我的项目中,我需要从给出 2 行的查询中检索一些数据(我在 php 我的管理员中测试了查询)
但我正在使用面向对象的编程,我的方法如下所示:
function __construct($pid){
Sys::database_connect();
$prod_data = mysql_query("SELECT Produto.produto_id, Produto.nome, Produto.descricao, Produto.pvp, Produto.iva_id, Produto.fornecedor_id, Produto.views, Categoria.nome AS categoria, Imagem.file FROM Produto, Categoria, Imagem WHERE Produto.produto_id = '$pid' AND Produto.categoria_id=Categoria.categoria_id AND Imagem.Produto_produto_id = Produto.produto_id ORDER by Produto.produto_id") or die(mysql_error());
$array_data = mysql_fetch_array($prod_data);
$this->produto_id = $array_data['produto_id'];
$this->nome = $array_data['nome'];
$this->descricao = $array_data['descricao'];
$this->pvp = $array_data['pvp'];
$this->categoria = $array_data['categoria'];
//this is the picture name (the first one will be the main pic of the product)
$this->file = $array_data['file'];
$pre_img_galery = array();
$max_pics=count($array_data);
for ($pci_for=0; $pci_for < $max_pics; $pci_for++) {
//array_push($pre_img_galery, $array_data['file'][$pci_for]);
echo $this->$array_data['file'].'<br>';
}
$this->img_galery = $pre_img_galery;
}
数据库有 2 张图片,导致图片字段中有 2 行具有不同的值...
我的 for 循环只是回显第一个文件名字符的字符...
如何将图片文件名定义为数组(img_galery)?
我的解决方法:
function __construct($pid){
Sys::database_connect();
$prod_data = mysql_query("SELECT Produto.produto_id, Produto.nome, Produto.descricao, Produto.pvp, Produto.iva_id, Produto.fornecedor_id, Produto.views, Categoria.nome AS categoria, Imagem.file FROM Produto, Categoria, Imagem WHERE Produto.produto_id = '$pid' AND Produto.categoria_id=Categoria.categoria_id AND Imagem.Produto_produto_id = Produto.produto_id ORDER by Produto.produto_id") or die(mysql_error());
/*while($row = mysql_fetch_array($prod_data)) {
echo $prod_data['file'].'<br>';
}*/
while ($row = mysql_fetch_array($prod_data)){
echo $this->produto_id = $row['produto_id'];
echo $this->nome = $row['nome'];
echo $this->descricao = $row['descricao'];
echo $this->pvp = $row['pvp'];
echo $this->categoria = $row['categoria'];
//echo $this->online = $array_data['online'];
echo $this->file = $row['file'];
$pre_img_galery = array();
array_push($this->img_galery, $row['file']);
echo '<br><br><br>';
print_r($this->img_galery);
}
}