PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Moderator: General Moderators
anjanesh
DevNet Resident
Posts: 1679 Joined: Sat Dec 06, 2003 9:52 pm
Location: Mumbai, India
Post
by anjanesh » 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 -
Code: Select all
dl("mylib.lib"); // say it contains class cls1
$obj = new cls1();
$obj->foo();
Thanks
feyd
Neighborhood Spidermoddy
Posts: 31559 Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA
Post
by feyd » Thu Jan 12, 2006 1:48 am
read up on making extensions to php.
anjanesh
DevNet Resident
Posts: 1679 Joined: Sat Dec 06, 2003 9:52 pm
Location: Mumbai, India
Post
by anjanesh » Thu Jan 12, 2006 1:59 am
What am I suppossed to be looking for in the
manual ?
EDIT :
Got It