The Arcive of vBulletin Modifications Site. |
|
|
Object Programming in PHP
Object Oriented Programming is the neat little thing you can see everywhere in vBulletin code using the syntax $vbulletin->function.It is basically a variable that contains functions or any code you like. So the base of an object is to create the class which looks something like this: Code:
class nameofclass {
//my first class was created
}
Code:
class nameofclass {
function plus ($x, $y)
{
$this->plus = $x + $y;
return $this->plus;
}
}
But when you would try to echo it it would give you an error that the function is a non-object.For that we have to construct the actual object: Code:
class nameofclass {
function plus ($x, $y)
{
$this->plus = $x + $y;
return $this->plus;
}
}
$nameofclass = new nameofclass();
This was a very short introduction to OOP. |
|
#2
|
|||
|
|||
|
I'm making an external script to post to a vBulletin forum. I pretty much need to do it an existing class. The problem is I need to require global.php within the class itself. This script errors when I move the require to inside the constructor. I have no clue why.
PHP Code:
|
|
#3
|
|||
|
|||
|
imho, this article doesn't even begin to explain object-oriented programming in PHP.
@budlight, it would help if you copy / pasted the error here. |
![]() |
|
|