我已经开始学习PHP了。我在许多文件中使用文件路径。我想在配置文件中使用它定义并在所有必需的文件中使用该变量。目前我在我的文件中使用了它,如下所示。
function base64ToImageProfile($base64_code){
$img_base64 = $base64_code;
//replace data:image/jpeg tag from base64
$img_base64 = str_replace('data:image/jpeg;base64,', '', $img_base64);
//replace data:image/png tag from base64
$img_base64 = str_replace('data:image/png;base64,', '', $img_base64);
//replace space with + from base64
$img_base64 = str_replace(' ', '+', $img_base64);
//decode base64 to image object
$decode_img = base64_decode($img_base64);
if (!$decode_img) {
return 'error';
}
//create path for image
$file_path= 'userImage/'.uniqid().'.png';
$success=file_put_contents($file_path,$decode_img);
//saves decoded image to specified path
if ($success) {
$file_path = 'www.example.com/myfolder/'.$file_path;
}
return $success ? $file_path:'error';
}
我想从配置文件中将变量用于我的url。我该怎么办?