Converting class to library
Posted: Thu Jan 12, 2006 1:10 am
Hi
Is it possible to make a php class and convert it to .lib and then use it in php -
Thanks
Is it possible to make a php class and convert it to .lib and then use it in php -
Code: Select all
dl("mylib.lib"); // say it contains class cls1
$obj = new cls1();
$obj->foo();