Home > Backend Development > PHP Tutorial > php有关问题,求急求,多谢各位大神

php有关问题,求急求,多谢各位大神

WBOY
Release: 2016-06-13 11:51:21
Original
862 people have browsed it

php问题,急求急求,谢谢各位大神!

本帖最后由 u011627263 于 2013-08-16 10:02:57 编辑 各位请看看这段代码
$obj = new COM("MakeDM_ActiveXDLL.dll");
$file = __FILE__;
    
$obj->DMMake($_POST['Text1'],$_POST['Text2'],$file,$_POST['Text4'],$_POST['Text22']);
$obj->DMMixText($file,$_POST['Text8'],$_POST['Text9'],$_POST['Text10'],$_POST['Text11'],$_POST['Text12'],$_POST['Text7']);

$nType = $_POST['Text2'];
$nScale = $_POST['Text4'];
        $nMargin = $_POST['Text22'];
        $szText=$_POST['Text8'];
        $lFontSize=$_POST['Text9'];
        $lTxtHeight=$_POST['Text10'];
        $lHmargin=$_POST['Text11'];
        $lVmargin=$_POST['Text12'];
        $lTxtCntOneLine=$_POST['Text7'];
?>


我运行,他说我的第二行有问题,我不知道是MakeDM_ActiveXDLL.dll文件的问题,还是写的有问题,DMMake和DMMixText是我MakeDM_ActiveXDLL.dll生成中的函数。请各位看看,非常感谢,下面是问题的截图
------解决方案--------------------
如果你确定你的扩展MakeDM_ActiveXDLL.dll能在php 正确使用的话,
就需要把这个.dll文件复制到php的安装目录\ext文件夹下,然后修改php.ini文件,在
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
配置节上,按照格式extension = a.dll添加该dll文件的引用
重新启动承载php的web服务器应该就OK啦。
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template