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{
     protected $value;

public function __construct($value){
    // Check if the parameter is a integer.
    if( ! is_int($value) ){
        throw new typeIntegerException('This isn\t an Integer.');
    }
    $this->value = $value;
}

// Returns the $value instead of the int class
public function __get(){
    return $this->value;
}

// Sets $value instead of the class
public function __set($value){
    if( ! is_int($value) ){
        throw new typeIntegerException('This isn\t an Integer.');
    }
    $this->value = $value;
}
}

$test = new int(5);
$test = "3"; 

Where $test = "3"; I want to call __set or a other method here instead of making $test "3". Is it possible to do that ?

Thanks in advance,

Greetings, Bob

link|improve this question

67% accept rate
feedback

closed as exact duplicate by Marc B, ircmaxell, George Cummins, Maerlyn, Graviton Sep 7 '11 at 2:17

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 0 down vote accepted

Your closest option is the Spl Types library. The problem is that it is considered experimental and it may be deprecated. The boon is that it does exactly what you are trying to do.

link|improve this answer
So the only way to get what I want is the use of an experimental class ? But if I get it right, it is possible because the Spl Types are the same as what I want to create. So how did they do it then ? Is there a way I can see the source code of there class ? Or is it in an other langauge then php? Still very thanks for the answer btw ^^ – Bob Sep 6 '11 at 18:03
They did it in C and added it as an extension. I suppose you could fork the code and maintain it yourself if necessary. – cwallenpoole Sep 6 '11 at 18:07
Ok ty for the information ^^ – Bob Sep 6 '11 at 18:08
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.