PHP514

所属分类:代理服务器
开发工具:C/C++
文件大小:6981KB
下载次数:9
上传日期:2006-05-15 20:51:18
上 传 者luzhuerwcq
说明:  PHP 是一种新型的 CGI 程序编写语言,易学易用,运行速度快,可以方便快捷地编写出功能强大,运行速度快,并可同时运行于 Windows、Unix、Linux 平台的Web后台程序,内置了对文件上传、密码认证、Cookies 操作、邮件收发、动态 GIF 生成等功能,PHP 直接为很多数据库提供原本的连接,包括Oracle、Sybase、Postgres、Mysql、Informix、Dbase、Solid、Access 等,完全支持ODBC接口,用户更换平台时,无需变换 PHP 代码,可即拿即用。
(PHP is a new type of CGI programming language, easy to use and fast operation. can it easier to write powerful, fast and can run on Windows, Unix, Linux Web background procedure, a pair of built-in file upload, password authentication, Cookies operation, mail, dynamic generation features such as GIF, PHP directly to many of the original database connectivity, , including Oracle, Sybase, Postgres, Mysql, Informix, Pack, Solid, Access, fully supports ODBC interface, users replace the platform. without transform PHP code that can be used to take.)

文件列表:
PHP v5.1.4 For Windows\dev\php5ts.lib (620992, 2006-05-04)
PHP v5.1.4 For Windows\dev (0, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_bz2.dll (69689, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_curl.dll (213050, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_dba.dll (397369, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_dbase.dll (36923, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_exif.dll (57402, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_fdf.dll (45113, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_filepro.dll (28733, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_gd2.dll (938041, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_gettext.dll (45117, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_gmp.dll (131129, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_ifx.dll (65593, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_imap.dll (675898, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_interbase.dll (69695, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_ldap.dll (127034, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_mbstring.dll (1687614, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_mcrypt.dll (41020, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_mhash.dll (24635, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_mime_magic.dll (32832, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_ming.dll (327738, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_msql.dll (32826, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_mssql.dll (49211, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_mysql.dll (49211, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_mysqli.dll (86076, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_oci8.dll (94266, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_openssl.dll (61501, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pdo.dll (81977, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pdo_firebird.dll (32834, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pdo_mssql.dll (24639, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pdo_mysql.dll (28735, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pdo_oci.dll (32829, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pdo_oci8.dll (32830, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pdo_odbc.dll (28734, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pdo_pgsql.dll (81983, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pdo_sqlite.dll (254016, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pgsql.dll (155707, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_pspell.dll (36924, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_shmop.dll (24635, 2006-05-04)
PHP v5.1.4 For Windows\ext\php_snmp.dll (249914, 2006-05-04)
... ...

To use the CSR and key generation functions from PHP, you will need to install an openssl.cnf file. We have included a sample file that can be used for this purpose in this folder alongside this readme file. The default path for the openssl.cnf file is determined as follows: OPENSSL_CONF environmental variable, if set, is assumed to hold the path to the file. If it is not set, SSLEAY_CONF environmental variable is checked next. If neither are set, PHP will look in the default certificate area that was set at the time that the SSL DLLs were compiled. This is typically "C:\usr\local\ssl\openssl.cnf". If the default path is not suitable for your system, you can set the OPENSSL_CONF variable; under windows 95 and *** you can set this variable in your autoexec.bat (or the batch file that starts your webserver/PHP). Under NT, 2000 and XP you can set environmental variables using "My Computer" properties. If setting an environmental var is not suitable, and you don't want to install the config file at the default location, you can override the default path using code like this: $configargs = array( "config" => "path/to/openssl.cnf" ); $pkey = openssl_pkey_new($config); $csr = openssl_csr_new($dn, $pkey, $config); Please consult the online manual for more information about these functions. NOTE! Windows Explorer gives special meaning to files with a .cnf extension. This typically means that editing the file from the explorer (by double or right-clicking) will be difficult or impossible depending on your setup. It is often easier to open the file from within the editor. You can avoid this issue by naming the file something else (you might need to rename the file using a DOS box) and then setting up an environmental variable as described above.

近期下载者

相关文件


收藏者