Home > Article > Backend Development > What does php curd mean?
php curd is a professional term for operating a database. Its meanings are: 1. Create, add data; 2. Update, update data; 3. Read, read data; 4. Delete, delete data.
The operating environment of this article: Windows7 system, PHP7.1 version, DELL G3 computer
What does php curd mean?
CURD
is actually the English abbreviation of add, delete, modify, and search; a professional term for PHP database operation.
C: Create to add data
U :update Update data
R:Read Read data
D:Delete Delete data
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of What does php curd mean?. For more information, please follow other related articles on the PHP Chinese website!