Tagged Questions

3
votes
7answers
354 views

How do I prevent using the incorrect type in PHP?

PHP, as we all know is very loosely typed. The language does not require you to specify any kind of type for function parameters or class variables. This can be a powerful feature. Sometimes though, ...
2
votes
4answers
476 views

Emulating a value type structure class in PHP

Is there any way to emulate a structure class in PHP? ie a class which passes by value and not by reference, so it can still be type hinted... And if so, what different techniques could be used? ...
1
vote
3answers
142 views

PHP Objects and their Functions

I am using PHP 5 now and I am exuberant to use OOP in PHP 5. I encounter a problem. I got few classes and few functions inside them. Few functions require arguments to be passed which are object of ...
0
votes
1answer
47 views

php overwrite the = action of an instanced variable [closed]

Possible Duplicate: Operator Overloading in PHP I am trying to create a library that allows type-safe variables in php. I want to do the following: class int extends typeClass{ ...