如何在 PHP 中包含类 [已关闭]
我有文件,我想在其中包含文件。我该怎么做?index.php
class.twitter.php
希望当我将下面的代码放在索引中时.php它会起作用。
$t = new twitter();
$t->username = 'user';
$t->password = 'password';
$data = $t->publicTimeline();
我有文件,我想在其中包含文件。我该怎么做?index.php
class.twitter.php
希望当我将下面的代码放在索引中时.php它会起作用。
$t = new twitter();
$t->username = 'user';
$t->password = 'password';
$data = $t->publicTimeline();
你的代码应该是这样的
require_once('class.twitter.php');
$t = new twitter;
$t->username = 'user';
$t->password = 'password';
$data = $t->publicTimeline();
您可以使用以下任一方法:
include "class.twitter.php";
或
require "class.twitter.php";
使用(或者如果要确保在执行期间只加载类一次)将导致在文件不存在时引发致命错误,而只会引发警告。有关更多详细信息,请参阅 http://php.net/require 和 http://php.net/includerequire
require_once
include