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
https://forums.phpfreaks.com/topic/217504-class/
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
https://forums.phpfreaks.com/topic/217504-class/#findComment-1129238
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.