recherche

Maison  >  Questions et réponses  >  le corps du texte

php - 在类的方法中使用外部数据什么的…

class a{
funtion o(){
  $pdo = new PDO(……);
  $o = $pdo->query('selece …');
  foreach($o as $s){
    return 这里是引入数据还是叫什么?
    }
  }
}

$x = new a();
echo $x->o("$s['id'] - $s['name']");

就是在class的方法里的foreach()输出的内容是由外部的样式什么的。
请问问这样的功能能不能实现?
在怎么作呢?

ringa_leeringa_lee2818 Il y a quelques jours535

répondre à tous(2)je répondrai

  • 迷茫

    迷茫2017-04-10 16:32:10

    构造函数里面传参,

    répondre
    0
  • 阿神

    阿神2017-04-10 16:32:10

    我认为比较好的是:从class 的 O 方法中返回数据,在调用后对得到的数据进行格式化展示,让展示和处理区分开

    répondre
    0
  • Annulerrépondre