ติดต่อได้ครับ โดยใช้ฟังชั่น ดังนี้นะครับ
file dll สร้างโปรเจ็คเป็น foor class คือ bar
อันนี้เป็น vb นะครับ ต้อง register ไฟล์ dll ก่อนนะครับ register ด้วย regsvr32.exe นะครับ
Public Function hello() As String
hello = "Hello World!"
End Function
<?php
$obj = new COM("foo.bar");
$output=$obj->hello(); // Call the "hello()" method
echo $output; // Displays Hello World! (so this comes from the dll!)
?>
แต่ว่าใช้ได้กับ window กับ linux ผมหาวิธีไม่ได้วอนผู้รู้ช่วยแนะนำหน่อยนะครับว่าจะให้กับ webserver ที่อยู่บน linux ยังไง (หรือต้องทำให้ยังไงให้ linux register ไฟล์ dll นั้นได้ อันนี้คิดส่วนตัวไม่รู้มันจะทำได้ ให้ linux register dll ของ window)