Home Database Mysql Tutorial PHP MYSQL基础教程_MySQL

PHP MYSQL基础教程_MySQL

Jun 01, 2016 pm 01:11 PM

1.注释的三种方式

    ① # 这里是注释 shell风格

    ② // 这里是注释 c++风格

    ③ /* 这里是注释 */ c风格 多行注释不要放在一行(单行注释应该用 //),防止出现不必要的错误

2.变量

    ① 变量以$开头

    ② 变量名由字符串、下划线和数字组成

    ③ 变量名以字符串或者下划线开头,不能以数字开头

    ④ 变量名严格区分大小写,$name和$Name不是一个变量

    ⑤ 变量可以用=赋值

3.PHP的8中变量

    4种标量:布尔值(true和false)、整型、浮点型、字符串

    2种非标量:数组和对象

    资源 

    null 不具有任何值的特殊类型

4.echo()和print(),printf(),sprintf()

    ① void echo(string arg1[,string arg2,....string argn]);

    ② int print(arg);

    ③ printf()可以输出由静态文本和通过变量传入的动态信息混合而成的内容

        boolean printf(string format[,mixed args]);

        例如 printf("bar inventory:%d bottles of tonic water",100);

        输出 bar inventory: 100 bottles of water

        在这里 %d 是占位符 表示输出的是一个整数

        关于占位符:

        参数        描述

        %b         将参数认为是一个整数,显示为二进制数

        %c         将参数认为是一个整数,显示为对应的ASCII字符

        %d         将参数认为是一个整数,显示为有符号十进制数

        %f         将参数认为是一个浮点数,显示为浮点数

        %o         将参数认为是一个整数,显示为有符号的八进制数

        %s         将参数认为是一个字符串,显示为字符串

        %u         将参数认为是一个整数,显示为无符号十进制

        %x         将参数认为是一个整数,显示为小写的十六进制数

        %X         将参数认为是一个整数,显示为大写的十六进制数

        如果想传入2个参数

        printf("%d bottles of tonic water cost $%f",100,43,20);

        使用小数时,可以使用一个精度指示符调整精度

        printf("$%.2f",43.2); // $43.20

    ④ sprintf()

        与printf() 类似,但是它将输出指派到字符串,而不是浏览器上输出

        string sprintf(string arg[,mixed args]);

        例如:$cost = sprintf("$%.2f",43.2); // $cost = 43.20;

5.类型转换

    (array)                    转换为数组

    (bool)/(boolean)        布尔值

    (int)/(integer)           整数

    (object)                   对象

    (real)/(float)/(double) 浮点型

    (string)                    字符串

    任何数据类型都可以转换成对象,结果是该变量成为了对象的一个属性,该属性名为scalar

    $model = 'test';

    $obj = (object)$model;

    echo $obj->scalar; // test

    字符串以整数开头,转换成整型时为开头的整型值,否则转换结果为0

    如果数学计算中用到包含 ./e/E 的字符串,这个字符串将作为浮点型进行计算

    $val1 = "1.2e3"; // 1,200

    $val2 = 2;

    echo $val1 * $val2 // 2400

6.gettype(),settype()

    string gettype(mixed var) // 获取类型 

    获取var所指定变量的类型,返回类型为8个:

    array,boolean,double,integer,object,resource,string,unknow type

    boolean settype(mixed var,string type);

    将var指定变量的类型设置为type指定的类型,type为7个:

    array,boolean,integer,float,object,null,string

7.确定变量类型

    boolean is_name(mixed var);

    is_name包括如下函数:

    is_array(),is_bool(),is_float(),is_integer(),is_string(),is_object(),is_resource(),is_null()

    is_scalar(),is_numeric()

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How do you alter a table in MySQL using the ALTER TABLE statement? How do you alter a table in MySQL using the ALTER TABLE statement? Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections? How do I configure SSL/TLS encryption for MySQL connections? Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL? How do you handle large datasets in MySQL? Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement? How do you drop a table in MySQL using the DROP TABLE statement? Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you represent relationships using foreign keys? How do you represent relationships using foreign keys? Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do you create indexes on JSON columns? How do you create indexes on JSON columns? Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)? How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)? Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

See all articles