


Solution to Failed to Save PHP Pictures into MySQL Database_PHP Tutorial
It is not a wise idea to save pictures in the database. Most of us save the pictures to the server, and then save the picture address to the database. In this way, we only need to read the picture address every time to display it, but I will introduce it below. Solution to the problem of saving a picture to mysql database.
The code is as follows | Copy code | ||||||||
$fileName = "a1.jpg";
fclose($fp); $db->execute("insert db2.testimg (`img`) values ('$img') ;"); |
Report error
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`?绶q?仳!??? ?1丶> ,Mo?' ^ W Z4in??T春??????U?湹?' at line 1
The code is as follows | Copy code |
$img = fread($fp, filesize($fileName)); $img = addslashes($img)
|
For various searches, the results in Baidu are all addslashes, or there are no addslashes at all. What nonsense
$img = base64_encode($img);
Insertion successful. Image file 17.0k
Come out and perform base64_decode, the display is normal
代码如下 | 复制代码 |
function PMA_sqlAddslashes($a_string = '', $is_like = false, $crlf = false, $php_code = false) |
The code is as follows | Copy code |
function PMA_sqlAddslashes($a_string = '', $is_like = false, $crlf = false, $php_code = false) { If ($is_like) { $a_string = str_replace('', '\\', $a_string); } else { $a_string = str_replace('', '\', $a_string); } If ($crlf) { $a_string = str_replace("n", 'n', $a_string); $a_string = str_replace("r", 'r', $a_string); $a_string = str_replace("t", 't', $a_string); } If ($php_code) { $a_string = str_replace(''', ''', $a_string); } else { $a_string = str_replace(''', '''', $a_string); } Return $a_string; } // end of the 'PMA_sqlAddslashes()' function$img = PMA_sqlAddslashes($img); |
文件大小12.8K 和phpmyadmin的一样大。
例
前台(image.html):
代码如下 | 复制代码 | ||||
|
代码如下 | 复制代码 |
//向数据库中插入图片 显示图片 else echo " mysql_close(); }else echo " 点此返回 } else echo " 点此返回 ?> |
代码如下 | 复制代码 |
//向数据库中插入图片 显示图片 else echo " mysql_close(); }else echo " 点此返回 } else echo " 点此返回 ?> |
代码如下 | 复制代码 |
mysql_connect("localhost","root","123456″); |
代码如下 | 复制代码 |
mysql_connect("localhost","root","123456″); mysql_select_db("test"); //显示最新插入的那张图片 $result=mysql_query("select image from images where id=(select max(id) from images)"); $row=mysql_fetch_object($result); header("Content-Type:image/pjpeg"); echo $row->image; mysql_close(); ?> |
Conclusion
PMA_sqlAddslashes is easy to use. The file size is 12.8k and the same size as the original image
bin2hex hexadecimal useful file 25K
base64_encode is easy to use, the output file requires base64_decode 17K
addslashes is not easy to use, continue to report errors (note: addslashes is easy to use on some windows machines)

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor

SublimeText3 English version
Recommended: Win version, supports code prompts!

Notepad++7.3.1
Easy-to-use and free code editor
