PHP Function Accessing Database Connection

前端 未结 5 502
走了就别回头了
走了就别回头了 2021-01-14 09:15

How do I allow a function to access a database connection without using GLOBAL?

config.php

 DEFINE (\'DB_HOSTNAME\', \'hostname\');
 DEFINE (\'DB_DAT         


        
5条回答
  •  心在旅途
    2021-01-14 10:06

    Use function parameters

    function something ($dbc) {
      // your db code here
    }
    

    function arguments

提交回复
热议问题