PHP开发基础

Jun 23, 2016 pm 02:31 PM

一、变量与表达式
PHP变量以美元符$开头,以名称作为变量之间的区分,变量名长度为如:$_name=”zhoulang”;//合法    $name=”zhoulang”;//合法   $1name=”zhoulang”;不合法
二、打印与输出变量
1、echo语句,如:echo “123″;
2、printf函数:用于格式化输出字符串,主要用于字符串中以%开头的格式字符串替换(以%开头的格式字符串,在%后面跟有各种格式字符,以说明输出数据的类型、形式、长度、小数点位数)。语法:boolean printf(string format[,mixed args])
如:printf(”%15s”, “some text”);   //运行结果:some text
3、sprintf函数:基本跟printf函数相同,但是它可以将转换后的结果保存到一个字符串变量中,而不是直接输出。
如:$formatted=sprintf(”%15s”,”some text”);
4、printf和sprintf所支持的格式转换字符表
%???打印出百分比符号,不转换
B???整数转换成二进制数
C???整数转成对应的ASCII字符
D???整数转换成十进制数
F???倍精确度数字转成浮点数
O???整数转换成八进制数
S???整数转成字符串
x/X???整数转成小写/大写的十六进制数
三、显示数组与对象
1、print_r($array/$var):打印数组,不过也可以打印普通 变量。
print_r($_GET);//打印使用GET方法传递的表单内容
2、var_dump($object/$array/$var):可以打印对象、数组、已经标量变量。
var_dump($DB);//打印$DB数据库连接对象的内容。
3、var_export($object/$array/$var):输出或返回一个变量的字符串表示。此函数返回关于传递给该函数的变量的结构信息,它和print_r()类似,不同的似其返回的表示似合法的php代码,可以通过将函数的第二个参数设置为true,从而返回变量的表示。
$a = array(1,2,array(”a”,”b”,”c”));
echo var_export($a);
echo “
”;
echo var_export($a, true);
四、变量的变量
在php中,可以创建一个变量的引用,即一个变量中包含其他的变量,称为变量中的变量,也称为动态变量。由于在脚本中变量值不是确定的,因此使用变量的变量来创建变量名并不一定遵循变量名命名规约。
$$var_name = “php5″;
$$var_name=”php5 web开发”;
echo $php5;//显示 php5 web开发
$$name=’123′;
$$name=’456′;
echo ${’123′};//显示456
function myfunc() {
echo “函数内容!”;
}
$f=’myfunc’;
$f();//将调用myfunc函数
五、超级全局变量数组
1、php超级全局变量列表
$_GET[]???-获得以GET方法提交的变量数组
$_POST[]???-获得以POST方法提交的变量数组
$_COOKIE[]???-获取和设置当前网站的Cookie标识
$_SESSION[]???-取得当前用户访问的唯一标识,以数组形式体现,如sessionid以及自定义session数据
$_ENV[]???-当前php环境变量数组
$_SERVER[]???-当前php服务器变量数组
$_FILES[]???-上传文件时提交到当前脚本的参数值,以数组形式体现
$_REQUEST[]???-包含当前脚本提交的全部请求,包含了$_GET、$_POST、$_COOKIE、$_SESSION的所有动作
$GLOBALS[]???-该超级变量数组包含正在执行脚本所有超级全局变量的引用内容
2、$_SERVER超级全局变量数组
1、$_SESSION['PHP_SELF'] ? 获取当前正在执行脚本的文件名
2、$_SERVER['SERVER_PROTOCOL'] ? 请求页面时通信协议的名称和版本。例如,“HTTP/1.0”。
3、$_SERVER['REQUEST_TIME'] ? 请求开始时的时间戳。从 PHP 5.1.0 起有效。和time函数效果一样。
4、$_SERVER['argv'] ? 传递给该脚本的参数。我试了下,get方法可以得到$_SERVER['argv'][0];post方法无法给他赋值。
5、$_SERVER['SERVER_NAME'] ? 返回当前主机名。
6、$_SERVER['SERVER_SOFTWARE'] ? 服务器标识的字串,在响应请求时的头信息中给出。 如Microsoft-IIS/6.0
7、$_SERVER['REQUEST_METHOD'] ? 访问页面时的请求方法。例如:“GET”、“HEAD”,“POST”,“PUT”。
8、$_SERVER['QUERY_STRING'] ? 查询(query)的字符串(URL 中第一个问号 ? 之后的内容)。
9、$_SERVER['DOCUMENT_ROOT'] ? 当前运行脚本所在的文档根目录。在服务器配置文件中定义。 如E:\server
10、$_SERVER['HTTP_ACCEPT'] [...]

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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

See all articles