Is it safe to place my MySQL Database Connection inside a PHP Function so that other PHP functions can use it?
|
Yes. it is a good idea. I even place mine in a class.
Then you can just do:
|
|||||||||||
|
|
You probably don't want to create it in a regular PHP
Then each time you call it, you will be creating and returning a new connection. It may be better to create it once per script inside a class as a Singleton, and have a class method return the database one connection to any function that calls it. EDIT Neal's answer actually demonstrates the singleton pattern for this nicely. Beat me to it with a more code-complete answer. |
|||
|
|
|
It is a good thing for performance. Connecting to the database just when the function was called it will result a good performance for SQL server. |
|||||||
|