In fact, these contents can be learned in the php manual, but many php beginners do not know how to read the php manual and cannot understand it
So Aiwei.com will now explain the built-in functions of php
There are functions related to case conversion
Text html tag processing function
Case related functions
The code is as follows:
strtolower() strtoupper() ucfirst() ucword()
HTML tag related The string formatting function
code is as follows:
nl2br() htmllentities() htmlspecialchars () stripslashes () strip_tags() number_format () strrev() md5()
All string processing functions in php do not modify the original string, but return a newly formatted The string
code is as follows:
<?php //转换成小写 $a='www.jb51.net'; echo strtolower($a); //结果:www.jb51.net //转换成大写 $a='www.jb51.net'; echo strtoupper($a); //结果:WWW.jb51.net //首字母大写 $a='www.jb51.net'; echo ucfirst($a); //结果:Www.jb51.net //每个单词首字母大写 $a='i love you'; echo ucword($a); //结果:I Love You /* 提示:大家都知道大小写,认为小写和大写有区别吗,但是为什么要区分大小写呢 在win系统下php大小写不严格 但是在linux系统下就严禁拉 大小写不能乱写 比如 在 自动加载类 的时候 <?php function _autoload($className){ include strtolower($className).'.class.php'; } $obj= new MyClass; 这样就加载myclass.class.php 因为文件名常是小写那么必须转换小写 ?> */ //nl2br把空格转换成实体<br/>因为一般在浏览器里显示的换行都是<br/> 例如在表单留言本里必须要转换不然折行不成功 再多的空格都任务是一个空格 $a=' i love you '; echo $a; echo nl2br($a); 结果1:i love you 结果2: i love you //表单提交如果你不进行html标签处理那么就会直接显示样式或者js代码直接运行 /* <form> <input type='text' name='title'> <input type='submit' name='submit' value='提交'> </form> 当你输入 <H1>www.jb51.net<H1> 一提交就出现是一号大字体 但是你原来是想要 <H1>www.jb51.net<H1>结果的 所以要处理下 当输入<script>alert('www.jb51.net')</script> 一提交就会运行javascript 这样不好 必须处理下来防止黑客找到你攻击的入口 表单默认提交方式是get */ //当你输入<p><h1 id="www-jb-net">www.jb51.net</h1></p> echo htmlspecialchars($_GET['title']);//过滤了 结果:<p><h1 id="www-jb-net">www.jb51.net</h1></p> 其他查看源码就知道< 和 >已经被替换了成< >就会在页面原型显示 还有一点要主要 如果不处理<p >有的复制的文章自身有标签样式就会打乱你的 页面布局 可能css冲突 htmllentities()函数用户和htmlspecialchars()相反用法就不说了 当你需要那个标签留着可以用到strip_tags()函数 echo strip_tags($_GET['title'],'<b><p><strong><h1>'); 提交结果是你查看源码 就会发现<p>没有了 /* 加入输入i love 'jb51'; 提交结果为 i love \'jb51\'反斜杠转义了 那么我要想原文输出怎么办呢 可以用这个php函数stripslashes() 取消转义 echo stripslashes($_GET['title']); 结果是i love 'jb51'; 如果含有html标签呢如这种 <a href="http://www.jb51.net/">i love 'jb51'</a> 我要原型输出怎么办 可以用2个函数结合起来用 我已经说过的 echo htmlspecialchars(stripslashes($_GET['title'])); 结果:<a href="http://www.jb51.net/">i love 'jb51'</a> */ //number_format()这个函数是格式化货币函数 不同国家的习惯不一样那么需要的货币显示就不一样例如商城中国钱是通常是这样的格式 千分位分割用逗号 保留几位用点 人称‘小数点' 这个函数的用法很简单 number_format($money,小数点保留几位,'小数点用什么分开','千分位用什么分开') $price='123465789.233'; echo number_format($money,2,',','.'); 结果:123.465.789,23 echo number_format($money,2,'.',',');//中国式的 结果:123,465,789.23 //strrev()使字符串反倒过来 $str='http://www.jb51.net'; echo strrev($str); 结果:moc.tenwii.www//:ptth //md5就是加密 用户名密码必须要加密防止黑客 $a='admin'; echo $b= md5($a);
The above is the detailed content of Basic usage of php built-in functions. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor
