【php文件扩展名判断,_PHP教程】教程文章相关的互联网学习教程文章

php文件路径/文件扩展名未保存到sql中的数据库【代码】

我成功地加扰并将图像上传到我的数据库,但是文件路径没有保存到我的sql数据库中的“profile”选项卡.这有什么不对?我如何解决它. include 'core/init.php';function change_profile_image($user_id, $file_temp, $file_extn) { $file_path = 'profile/' . substr (md5(time()), 0, 10) . '.' . $file_extn; move_uploaded_file($file_temp, $file_path); mysql_query("UPDATE `users` SET `profile` = " . $file_path . "' WHE...

php – nginx拒绝访问.log文件扩展名【代码】

如何防止nginx访问.log文件扩展名,我有这个nginx配置location ~* (\.ini|\.log|\.conf)${deny all;error_page 403 =404 / ;}但是上面的代码还没有工作?我对pcre正则表达式处理不够好.解决方法:为我工作.location ~\.(ini|log|conf)${deny all;error_page 403 =404 / ;}