Home  >  Article  >  Backend Development  >  在类的方法中使用外部数据什么的…

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

WBOY
WBOYOriginal
2016-06-06 20:22:151221browse

<code>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']");
</code>

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

回复内容:

<code>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']");
</code>

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

构造函数里面传参,

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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn