Jump to content

class?


jwilson122

Recommended Posts

Hey, I was wondering if anyone could give me an example script or show me how to make a class like such:

$do->Query("SELECT * FROM users")->Where("id = 1")->extra("LIMIT 1");

See, I know how to make a class and functions inside of the class to make:

$do->Query("SELECT * FROM users");
$do->Where(""id = 1");
$do->extra("LIMIT 1");

But I would rather have the single line link..

$do->Query("SELECT * FROM users")->Where("id = 1")->extra("LIMIT 1");

 

Is this considered OOP (object oriented programming) ? I've searched and searched for this, tried many things.. nothings working :/ any help? Thanks!

Link to comment
Share on other sites

for the query function in the class I would have the input to be

function Query($query, $where, $extra)
{
//rarrararara
$sql = "$query $where $extra";
//execute and return results
}

 

then to call it

$do->Query("SELECT * FROM users", "WHERE id=1", "LIMIT 1");

Link to comment
Share on other sites

for the query function in the class I would have the input to be

function Query($query, $where, $extra)
{
//rarrararara
$sql = "$query $where $extra";
//execute and return results
}

 

then to call it

$do->Query("SELECT * FROM users", "WHERE id=1", "LIMIT 1");

 

I didn't even think of doing it that way haha! Not bad idea :)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.