Hello ...
First of all sorry for my bad English .
i am beginner with PHP core hacking , and i want to write my own extensions ,
i wrote my test extension and i compile the PHP code with it without any
problem , (it's PHP 4.x) .
my problem is i don't get the .so file after compile the sou
Hello ...
Firstly sorry for my bad English, my friend request from me to send this
suggestion for PHP developer.
The suggestion is support use constant as object, for example :
class HelloWorld
{
function start()
{
echo 'Hello World';
}
}
define('OBJ',new HelloWorld);
OBJ-