Ways to disable deprecated function notice in PHP

Once PHP upgrade to the new version they possibly depreciate some functions.

If you are using any such functions in your site after setting to the new version you will notice the error mentioned below.

 

Deprecated: Function password_hash() is deprecated in


In order to disable this warning, you have to add the below code in your website index file, if you are using bootstrap then you have to update the bootstrap file.

error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);



  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

SQL server- network related or instance-specific error happened while connection establishing

  Instance-specific or network related error happening while connecting to SQL server   Please...

OleDB connection string examples

OleDB connection string examples MS Access (Jet) "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA...

Do you allow custom COM components?

Do you allow custom COM components? We are not offering to install the custom COM components...

Error when accessing a WCF services

Error when accessing a WCF services Error when accessing a WCF service: "IIS specified...

How to cache static contents to client with UseMaxAge?

You can consider to caches static contents to the client with UseMaxAge if your website has too...

Powered by WHMCompleteSolution