有没有人有指南或可以为我提供一个快速示例如何设置一个类并将数据从类传递到 index.php?
我在想我可以像在框架中那样做,我不能吗?
$this->class->function();
酷类.php
class coolClass
{
public function getPrintables()
{
return "hello world!";
}
}
索引.php
include 'coolclass.php';
$instance = new coolClass();
echo $instance->getPrintables();
一个简单的例子:
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();
我认为这里发生的事情相当直截了当……所以我就不说了。不想放弃太多。