0

有没有人有指南或可以为我提供一个快速示例如何设置一个类并将数据从类传递到 index.php?

我在想我可以像在框架中那样做,我不能吗?

$this->class->function();

4

2 回答 2

4

酷类.php

class coolClass
{
    public function getPrintables()
    {
        return "hello world!";
    }
}

索引.php

include 'coolclass.php';
$instance = new coolClass();
echo $instance->getPrintables();
于 2012-07-27T21:37:02.937 回答
1

一个简单的例子:

Foo.php

class Foo {
  public __construct() {
    ..initialize your variables here...
  }

  public function doSomething() {
    ..have your function do something...

  }
}

索引.php:

Include('Foo.php');
$my_Foo = Foo();
$my_Foo->doSomething();

我认为这里发生的事情相当直截了当……所以我就不说了。不想放弃太多。

于 2012-07-27T21:41:47.057 回答