我开始将所有旧的 mysql_ 函数转换为 PDO 并且在掌握这个概念时遇到了一些麻烦。我希望能够在我的函数页面中访问我的 PDO 连接变量,以便可以根据需要调用它,而无需在每个函数的开头制作连接脚本。我会尽量解释我的设置。
这是我的 init.php 页面,它加载了所有必需的 php 页面。此页面包含在我的每个页面的顶部,但不包含功能页面。
初始化文件
<?php
session_start();
error_reporting(E_All);
require 'database/connect.php';
require 'functions/users.php';
require 'functions/general.php';
require 'functions/trainer.php';
?>
这是我的连接文件,它打开了我的数据库连接。是的,我也有一个mysql_connect
开放的,因为在将所有其他功能转换为 PDO 时,我无法禁用所有其他功能。
连接.php
<?php
$connect_error = 'Sorry there is a problem with the database connection.';
mysql_connect('Localhost', 'customn7', 'I<3deadlifts!') or die($connect_error);
mysql_select_db('customn7_cm') or die($connect_error) or die($connect_error);
?>
<?php
//PDO database connect
$config['db'] = array(
'host' => 'Localhost',
'username' => 'customn7',
'password' => '********',
'dbname' => 'customn7_cm'
);
try {
$db = new PDO('mysql:host=' .$config['db']['host']. ';dbname=' .$config['db']['dbname'], $config['db']['username'], $config['db']['password']);
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$db->exec("SET CHARACTER SET utf8");
}
catch(PDOException $e) {
echo 'ERROR: ' . $e->getMessage();
}
?>
这是我functions/trainer.php
编写函数的地方:
培训师.php
function exist_client_to_class($cd){
list($user_id, $class_id, $first_name, $last_name, $nickname) = explode('|', $cd);
try{
$stmt = $db->prepare('INSERT INTO clients
(`user_id`, class_id, first_name, last_name, nickname, date)
VALUES (:user_id, :class_id, :first_name, :last_name, :nickname, CURDATE())
');
$stmt->execute(array(
':user_id' => $user_id,
':class_id' => $class_id,
':first_name' => $first_name,
':last_name' => $last_name,
':nickname' => $nickname)
);
}
catch(PDOException $e) {
echo 'Error: ' . $e->getMessage();
}
}
截至目前,我无法$db
从我的 trainers.php 页面访问我的变量。有人可以帮我弄这个吗?
更新
下面是调用该函数的代码:
// Post Selected name to current class.
if (isset($_POST['exist_to_class'])){
if (empty($_POST['client_data']) === true){
$errors [] = 'You much select a client to be added to the class.';
} else {
if (isset($_POST['client_data']) && !empty($_POST['client_data']));
foreach ($_POST['client_data'] as $cd){
exist_client_to_class($db, $cd);
header('Location: view_class.php?class_id='.$class_id.' ');
} // foreach $cd
} // else
} //isset