also @ TechSpot: HP Envy/Pavilion revamp, more touchscreens, 3200x1800 LCD, 20" tablet

Loading DLL(VC++) using PHP

Discussion in 'Virus and Malware Removal' started by rajesh.v, Mar 28, 2007.

  1. rajesh.v Newcomer, in training

    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
  2. jobeard TS Ambassador Posts: 12,228   +122

    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 :)