search
HomeBackend DevelopmentPHP TutorialCommon input statements and common functions of php

这篇文章主要介绍了关于php的常用输入语句以及常用函数,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

一、 echo语句

echo做php的人在熟悉不过了,在php文件中我们用他来输出数据。

<?php
echo "hi mm";
echo "this is {$_SERVER[&#39;SCRIPT_URL&#39;]} !";
//定界符,我们用他可以输入一在堆的html,而不要考虑引号的问题
echo <<<STR
 <p id="search">
 <form method="get" id="searchform" action="http://blog.51yip.com/">
 <p>
 <input type="text" value="" name="s" id="s" />
 <input type="submit" id="searchsubmit" value="Search" />
 </p>
 </form>
 </p>
STR;
//定界符可以自定义,不过要成对出现,并且结束的地方要顶头
var_dump(print(&#39;test&#39;));     //结果为trueint(1),print是函数有返回值
var_dump(echo "<br>" );   //报错,echo不是函数
1? print(&#39;222&#39;): print(&#39;11111&#39;);   //结果为222
1 ?echo &#39;222&#39;:echo &#39;11111&#39;;        //报错的,echo不是函数,这样的写法,我也经常范的。
?>

从上面的例子中我们要以看出,echo可以很灵活的输出要输出的东西,输出字符串,根其他字符结合来完成输出,例如:利用{}大括号来输出数组中的数据,利用定界符来输出大段的HTML,这一点很有用的。echo他不是函数,没有返回值,这一点根print不一样。

二、 print函数

<?php
print "hi mm";
print "this is {$_SERVER[&#39;SCRIPT_URL&#39;]} !";
//定界符,我们用他可以输入一在堆的html,而不要考虑引号的问题
print <<<STR
 <p id="search">
 <form method="get" id="searchform" action="http://blog.51yip.com/">
 <p>
 <input type="text" value="" name="s" id="s" />
 <input type="submit" id="searchsubmit" value="Search" />
 </p>
 </form>
 </p>
STR;
//定界符可以自定义,不过要成对出现,并且结束的地方要顶头
?>

从上面的二个例子,我们可以看出,echo和print基本上没什么区别,一个不是函数,一个是函数。

三、 printf函数

格式:string printf ( string format [, mixed args])

<?php
$format = "my name is %s,%04d older";
printf($format, &#39;tank&#39;,28);   //结果为:my name is tank,28 older
$format = "my name is %2\$s,%1\$d older";
printf($format, &#39;tank&#39;,28);   //my name is 28,0 older  为什么会出现0,因为给的字符根要格式输出的字符不匹配
$format = "my name is %s,%d older";
printf($format, &#39;tank&#39;);   //Warning: printf() [function.printf]: Too few arguments
$format = "my name is %1\$s,%1\$d older";
printf($format, &#39;tank&#39;);    //结构为:my name is tank,0 older
?>

下面格式类型,和printf相类似的就不说了,好多。
%d 十进制有符号整数
%u 十进制无符号整数
%f 浮点数
%s 字符串
%c 单个字符
%p 指针的值
%e 指数形式的浮点数
%x, %X 无符号以十六进制表示的整数
%o 无符号以八进制表示的整数
%g 自动选择合适的表示法

四、 print_r函数以及var_dump函数

大多数人用print_r都是用来打印数组的,其实他可以打印很多种类型的数据,数组只是其中之一,var_dump他的最大好处是什么呢,不光可以看到打印出来的数据是什么,还能让你知道他是什么类型。即使你看到的东西是一样的,但类型不一定一样。

<?php
$test = array(&#39;tank&#39;);
$aaaa = "aaaaa";
print_r($test);      //结果Array ( [0] => tank )
var_dump($test);     //结果array(1) { [0]=>  string(4) "tank" }
print_r($aaaa);      //结果aaaaa
var_dump($aaaa);     //结果string(5) "aaaaa"
print_r(true);      //结果1
var_dump(true);     //结果bool(true)
$bbb = 11;
$ccc = "11";
var_dump($bbb);     //结果int(11)
var_dump($ccc);     //结果string(2) "11"
?>

五、 exit函数和die函数

这二个函数也是我们经常用的,调试程序的时候,我们需要中断程序的执行,这个时候,就可以用这二个函数了。

<?php
1?exit("aaaaaa"):exit("bbbbbbb");  //结果aaaaaa
1?die("cccccc"):die("ddddddd");    //结果cccccc
?>

相关推荐:

php中一些常用的语句收集,php常用语句收集

PHP中常用的输出函数总结,php输出函数_PHP教程

The above is the detailed content of Common input statements and common functions of php. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 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-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 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 TestsSimplified HTTP Response Mocking in Laravel TestsMar 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 CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 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

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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 AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 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

See all articles

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool