- Building a Web Application with PHP and MariaDB:A Reference Guide
- Sai Srinivas Sriparasa
- 166字
- 2021-07-16 11:36:52
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Upon executing the show databases;
command, the list of existing databases will be outputted to the screen"
A block of code is set as follows:
<?php /** * Array declaration before PHP 5.4 * */ $arr = array(1,2,3,4); //Print an element to the screen echo $arr[0]; /** * Array declaration with PHP 5.4 or greater * */ $arr2 = [1,2,3,4]; //Print an element to the screen echo $arr2[0]; ?>
Any command-line input or output is written as follows:
phpunit --version
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Now that the database has been successfully changed, note that the database name reflects in between the brackets next to MariaDB, which denotes the current database."
- Learn TypeScript 3 by Building Web Applications
- CockroachDB權威指南
- 圖解Java數據結構與算法(微課視頻版)
- 實戰低代碼
- 零基礎學Python數據分析(升級版)
- Learning Apache Mahout Classification
- Learning Probabilistic Graphical Models in R
- SQL Server數據庫管理與開發兵書
- 基于SpringBoot實現:Java分布式中間件開發入門與實戰
- Hands-On GUI Programming with C++ and Qt5
- 深入理解C指針
- Instant Debian:Build a Web Server
- PHP與MySQL權威指南
- 軟件工程與UML案例解析(第三版)
- JBoss AS 7 Development