PHP Velho Oeste 2024

Удаленные расширения

Следующие расширения перемещены в репозиторий PECL и больше не будут поставляться с дистрибутивом PHP. Версии этих расширений в виде пакетов PECL будут создаваться в соответствии с потребностями пользователей.

  • dbase - Более не поддерживается
  • fbsql - Более не поддерживается
  • fdf - Поддерживается
  • ming - Поддерживается
  • msql - Более не поддерживается
  • ncurses - Поддерживается
  • sybase - Убрано из дистрибутива; вместо него используйте расширение sybase_ct
  • mhash - Убрано из дистрибутива; вместо него используйте расширение hash. hash обладает полной совместимостью с mhash; все существующие приложения, использующие старые функции будут продолжать работать.
add a note add a note

User Contributed Notes 4 notes

up
1
Cam
14 years ago
The MSSQL extension is no longer present in the 5.3.0 release, but this fact is not mentioned on this page. Perhaps that should be added.

It seems that the recommended solution is to use "SQL Server Driver for PHP" by Microsoft (http://www.microsoft.com/sqlserver/2005/en/us/php-driver.aspx). However, it is reported that the current release (v1.0) does not support PHP 5.3.0 (see http://forums.iis.net/t/1158918.aspx). Apparently, v1.1 will support PHP 5.3, but it is currently in CTP release.
up
0
Anonymous
9 years ago
As mentioned mssql was discontinued. Summing that MDB2 doesn't support sqlsrv driver means that you are screwed if your codebase depends on MDB2 + mssql.
up
0
keith
13 years ago
Hash does NOT fully implement mhash.  Notably Joomla has 2 lines in helper.php that use an unsupported function: mhash_keygen_s2k(,,,).

Other functions of mhash can be rewritten:

<?php
echo bin2hex(mhash(MHASH_RIPEMD160 ,"my_password"));

echo
hash("ripemd160" ,"my_password");
?>
up
0
schwilch at gmx dot de
13 years ago
MSsqlserverDriver does not support mssql-functions but sqlsrv-functions.
If you do not want to change all of your php-scripts for using other functions and another function-handling of db-connection-parameters you should use freeTDS for Windows (download for example at moodle.org) and php_dblib.dll.
I hope this helps others with MS-Systems.
To Top