ChinaUnix.net
相关文章推荐:

PHP 代码编译成C

怎样把php代码编译成DLL文件? 具体怎样实现,请教各位,先谢谢了。 Email:abc-68@163.com [ 本帖最后由 HonestQiao 于 2005-12-10 16:27 编辑 ]

by marcus - PHP - 2005-12-11 01:46:49 阅读(3742) 回复(8)

相关讨论

*** WARNING *** | | | | Please check that your Apache (httpd) is linked with libpthread. | | If not, you have to recompile Apache with pthread. For more | | details, see this page: http://www.php.net/manual/ref.oci8.php | +--------------------------------------------------------------------+...

by declare - PHP - 2006-10-13 09:19:27 阅读(1275) 回复(1)

最近Linux编译php,我把mysql编译成了so,在php.ini中也设置了 extension=mysql.so 可是phpinfo()显示没有mysql的支持,求助! 编译选项 './configure' '--prefix=/home/zhen/php/php51' '--with-apxs2=/home/zhen/apache22/bin/apxs' '--enable-fastcgi' '--enable-calendar' '--enable-bcmath' '--with-libxml-dir' '--with-zlib' '--with-bz2' '--enable-ftp' '--with-gd=shared' '--with-jpeg-dir' '-with-png-dir' '--with-xpm...

by kytexzy - PHP - 2008-03-20 21:12:21 阅读(2104) 回复(0)

用以前php4跟apache1.3的老方法不行了 php官方网站又只介绍了动态模块的编译 在php的configure中有--with-apache2的提示,似乎没什么用啊

by caibird3rd - PHP - 2005-03-23 23:04:07 阅读(929) 回复(0)

[code][SO文件]用php写的类能不能编译成SO库文件供其他任何文件调用[/code] [ 本帖最后由 yttlovezxx 于 2006-7-22 13:02 编辑 ]

by yttlovezxx - PHP - 2006-07-22 13:46:38 阅读(1433) 回复(1)

报错信息如下,google,baidu搜了N多,没找到有类似的,请大家帮忙看看,谢谢 Output line too long. Output line too long. Output line too long. ld: fatal: file ext/: unknown file type ld: fatal: File processing errors. No output written to a.out collect2: ld returned 1 exit status *** Error code 1 make: Fatal error: Command failed for target `sapi/cli/php'

by qwqg - Solaris - 2007-09-19 11:04:39 阅读(1772) 回复(2)

参数说明: $max_file_size : 上传文件大小限制, 单位BYTE $destination_folder : 上传文件路径 $watermark : 是否附加水印(1为加水印,其他为不加水印); 使用说明: 1. 将php.INI文件里面的"extension=php_gd2.dll"一行前面的;号去掉,因为我们要用到GD库; 2. 将extension_dir =改为你的php_gd2.dll所在目录; ******************************************************************************/ //上传文件类型列表 $uptypes=arra...

by hkebao - php文档中心 - 2009-07-19 23:14:51 阅读(1054) 回复(0)

参数说明: $max_file_size : 上传文件大小限制, 单位BYTE $destination_folder : 上传文件路径 $watermark : 是否附加水印(1为加水印,其他为不加水印); 使用说明: 1. 将php.INI文件里面的"extension=php_gd2.dll"一行前面的;号去掉,因为我们要用到GD库; 2. 将extension_dir =改为你的php_gd2.dll所在目录; ******************************************************************************/ //上传文件类型列表 $uptypes=arra...

by ouxingzhi - php文档中心 - 2009-05-30 22:03:49 阅读(852) 回复(0)

//产生的验证码 private $mCheckCode = ''; //验证码的图片 private $mCheckImage = ''; //干扰像素 private $mDisturbColor = ''; //验证码的图片宽度 private $mCheckImageWidth = '80'; //验证码的图片宽度 private $mCheckImageHeight = '20'; /** * * @brief 输出头 * */ private function OutFileHeader() { header ("Content-type: image/png"); } /** * * @brief 产生验证码 * */ pri...

by whzhoumin - php文档中心 - 2009-05-04 20:50:01 阅读(1162) 回复(0)

php代码规范 说明: 1.在编程时,首先遵从Thinkphp的各项格式及命名约定,在Thinkphp没有显示说明的情况下请遵照以下规范 2.文件必须以UTF-8编码格式保存,不要用记事本编辑文件(其在保存时会插入bom头) 第一部分:空格 1.使用 if,for,switch,while等语句,括号如下所示 if (bSet == NULL) { ... } 2.关键字之后加一个空格。运算符之后也加上一个空格。包括:&& 、||、 & 、| 、== 、 !=、 for ...

by yfhanbing - php文档中心 - 2008-11-02 20:45:49 阅读(2071) 回复(0)

php语言在互联网上使用最为流行的WEB服务器语言,所以我们先用一个Hello World例子来介绍一下。其php.php代码如下: php echo "Hello WOrld"; exit; ?> 在VG里面OnClick()的里面的代码如下: s=GetURL("http://localhost/xampp/php.php") showmessage(s) 运行结果得: 下来我们通过脚本来控制矩形与圆形的背景色: 其php.php代码如下: php echo "Rect1.Backcolor=\$FFFF00\n"; ...

by qindian - PHP - 2008-10-29 15:57:36 阅读(1377) 回复(3)