Loading DLL(VC++) using PHP

Status
Not open for further replies.

rajesh.v

Posts: 9   +0
Hi,

I am new to PHP

I already have a dll which is created using VC++.
I need to call a function within this dll from php


I know extension in php can help , but can someone give a detailed explanation?
Can someone help me out...

-Rajesh.V
 
PHP code typically calls OTHER PHP code. To call a library function, you need
to load the extension --- see php.ini
and look for
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;

Your VC++ may not be usable under PHP as the propert initializers may not
get called.

This is NOT a forum for programming -- suggest you join the PHP forum :)
 
Status
Not open for further replies.
Back