How to use the COM components in PHP?

Answers were Sorted based on User's Feedback



How to use the COM components in PHP?..

Answer / pankajbisane


Use Following Code :

<?php

$objCom = new COM(“AddNumber.math”);
$result = $objCom ->AddTwoNum(2,2);
echo $result;

?>

Is This Answer Correct ?    6 Yes 4 No

How to use the COM components in PHP?..

Answer / prantik gautam

<?php
dl(extension.dll); //as com
?>

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More PHP Interview Questions

What is difference between array_merge and array_combine?

0 Answers  


Can we run php on tomcat server?

0 Answers  


How can a cross-site scripting attack be prevented by php?

0 Answers  


How to turn on the session support in php?

0 Answers  


Explain about looping in PHP?

0 Answers  






Can we extend multiple classes in php?

0 Answers  


Does php have future?

0 Answers  


How arrays are passed through arguments?

0 Answers  


How many open modes available when a file open in PHP?

0 Answers  


Why ide is recommended for use while programming with php?

0 Answers  


Explain PHP looping?

0 Answers  


How to get useful error messages in php?

0 Answers  


Categories