/    Sign up×
Community /Pin to ProfileBookmark

Class includes…

Hi,
Is it possible to include files of functions into a class?

so like you have …

[code=php]

class whatever {
include(‘sqlfunctions.php’);

function blah($boo,$foo,$roo) {
echo $boo.”<br />”.$foo.”<br />”.$roo;
}

include(‘generatepagefunctions.php’);

}
[/code]

to post a comment
PHP

1 Comments(s)

Copy linkTweet thisAlerts:
@NogDogJan 15.2008 — Basically, no. In any case, it would probably make more sense from an OOP aspect to have the functionality in those include files put into their own classes, then instantiating them within your "whatever" class, e.g.:
[code=php]
require_once 'Sql.class.php';
require_once 'GeneratePage.class.php';
class whatever {
private $sql;
private $generatePage;
public function __construct()
{
$this->sql = new Sql();
$this->generatePage = new GeneratePage();
}
public doSomething()
{
$result = $this->sql->query('some sort of SQL thing here');
$this->generatePage->output($result);
}
}
[/code]
×

Success!

Help @smickus spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...