downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Autres changements aux extensions> <Nouvelles extensions
[edit] Last updated: Tue, 21 May 2013

view this page in

Extensions retirées

Ces extensions ont été placées dans PECL, et ne font plus partie de la distribution PHP. Le paquet PECL de ces extensions seront créés en fonction de la demande des utilisateurs.

  • dbase : plus entretenue.
  • fbsql : plus entretenue.
  • fdf : entretenue.
  • ming : entretenue.
  • msql : plus entretenue.
  • ncurses : entretenue.
  • sybase : abandonnée. Utilisez sybase_ct à la place, qui fait partie du coeur de PHP.
  • mhash : abandonnée. Utilisez plutôt hash à la place. hash supporte totalement mhash, et les applications seront compatibles.


Autres changements aux extensions> <Nouvelles extensions
[edit] Last updated: Tue, 21 May 2013
 
add a note add a note User Contributed Notes Extensions retirées - [3 notes]
up
0
keith
2 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
2 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.
up
0
Cam
3 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.

 
show source | credits | sitemap | contact | advertising | mirror sites