php基礎(chǔ)教程 php內(nèi)置函數(shù)實(shí)例教程
Jun 13, 2016 am 11:59 AM
所以愛微網(wǎng)現(xiàn)在講解先php內(nèi)置函數(shù)
有大小寫轉(zhuǎn)換相關(guān)函數(shù)
文本html標(biāo)簽處理函數(shù)
大小寫有關(guān)函數(shù)
復(fù)制代碼 代碼如下:
strtolower()
strtoupper()
ucfirst()
ucword()
HTML標(biāo)簽相關(guān)的字符串格式化函數(shù)
復(fù)制代碼 代碼如下:
nl2br()
htmllentities()
htmlspecialchars()
stripslashes()
strip_tags()
number_format()
strrev()
md5()
在php中所有字符串處理函數(shù) ,都不是在原字符串上修改,而是返回一個(gè)新格式化后的字符串
復(fù)制代碼 代碼如下:
//轉(zhuǎn)換成小寫
$a='www.jb51.net';
echo strtolower($a);
//結(jié)果:www.jb51.net
//轉(zhuǎn)換成大寫
$a='www.jb51.net';
echo strtoupper($a);
//結(jié)果:WWW.jb51.net
//首字母大寫
$a='www.jb51.net';
echo ucfirst($a);
//結(jié)果:Www.jb51.net
//每個(gè)單詞首字母大寫
$a='i love you';
echo ucword($a);
//結(jié)果:I Love You
/*
提示:大家都知道大小寫,認(rèn)為小寫和大寫有區(qū)別嗎,但是為什么要區(qū)分大小寫呢
在win系統(tǒng)下php大小寫不嚴(yán)格 但是在linux系統(tǒng)下就嚴(yán)禁拉 大小寫不能亂寫
比如
在自動(dòng)加載類的時(shí)候
function _autoload($className){
include strtolower($className).'.class.php';
}
$obj= new MyClass;
這樣就加載myclass.class.php
因?yàn)槲募J切懩敲幢仨氜D(zhuǎn)換小寫
?>
*/
//nl2br把空格轉(zhuǎn)換成實(shí)體
因?yàn)橐话阍跒g覽器里顯示的換行都是
例如在表單留言本里必須要轉(zhuǎn)換不然折行不成功 再多的空格都任務(wù)是一個(gè)空格
$a='
i
love
you
';
echo $a;
echo nl2br($a);
結(jié)果1:i love you
結(jié)果2:
i
love
you
//表單提交如果你不進(jìn)行html標(biāo)簽處理那么就會(huì)直接顯示樣式或者js代碼直接運(yùn)行
/*
當(dāng)你輸入
www.jb51.net
一提交就出現(xiàn)是一號(hào)大字體
但是你原來是想要
www.jb51.net結(jié)果的
所以要處理下
當(dāng)輸入<script>alert('www.jb51.net')</script>
一提交就會(huì)運(yùn)行javascript
這樣不好 必須處理下來防止黑客找到你攻擊的入口
表單默認(rèn)提交方式是get
*/
//當(dāng)你輸入www.jb51.net
echo htmlspecialchars($_GET['title']);//過濾了
結(jié)果:www.jb51.net
其他查看源碼就知道已經(jīng)被替換了成< >就會(huì)在頁(yè)面原型顯示
還有一點(diǎn)要主要 如果不處理有的復(fù)制的文章自身有標(biāo)簽樣式就會(huì)打亂你的頁(yè)面布局 可能css沖突
htmllentities()函數(shù)用戶和htmlspecialchars()相反用法就不說了
當(dāng)你需要那個(gè)標(biāo)簽留著可以用到strip_tags()函數(shù)
echo strip_tags($_GET['title'],'');
提交結(jié)果是你查看源碼 就會(huì)發(fā)現(xiàn)沒有了
/*
加入輸入i love 'jb51';
提交結(jié)果為 i love \'jb51\'反斜杠轉(zhuǎn)義了
那么我要想原文輸出怎么辦呢
可以用這個(gè)php函數(shù)stripslashes()
取消轉(zhuǎn)義
echo stripslashes($_GET['title']);
結(jié)果是i love 'jb51';
如果含有html標(biāo)簽?zāi)厝邕@種
i love 'jb51'
我要原型輸出怎么辦 可以用2個(gè)函數(shù)結(jié)合起來用 我已經(jīng)說過的
echo htmlspecialchars(stripslashes($_GET['title']));
結(jié)果:i love 'jb51'
*/
//number_format()這個(gè)函數(shù)是格式化貨幣函數(shù) 不同國(guó)家的習(xí)慣不一樣那么需要的貨幣顯示就不一樣例如商城中國(guó)錢是通常是這樣的格式
千分位分割用逗號(hào) 保留幾位用點(diǎn) 人稱‘小數(shù)點(diǎn)'
這個(gè)函數(shù)的用法很簡(jiǎn)單
number_format($money,小數(shù)點(diǎn)保留幾位,'小數(shù)點(diǎn)用什么分開','千分位用什么分開')
$price='123465789.233';
echo number_format($money,2,',','.');
結(jié)果:123.465.789,23
echo number_format($money,2,'.',',');//中國(guó)式的
結(jié)果:123,465,789.23
//strrev()使字符串反倒過來
$str='http://www.jb51.net';
echo strrev($str);
結(jié)果:moc.tenwii.www//:ptth
//md5就是加密 用戶名密碼必須要加密防止黑客
$a='admin';
echo $b= md5($a);
一提交就出現(xiàn)是一號(hào)大字體
但是你原來是想要
www.jb51.net結(jié)果的
所以要處理下
當(dāng)輸入<script>alert('www.jb51.net')</script>
一提交就會(huì)運(yùn)行javascript
這樣不好 必須處理下來防止黑客找到你攻擊的入口
表單默認(rèn)提交方式是get
*/
//當(dāng)你輸入www.jb51.net
echo htmlspecialchars($_GET['title']);//過濾了
結(jié)果:www.jb51.net
其他查看源碼就知道已經(jīng)被替換了成< >就會(huì)在頁(yè)面原型顯示
還有一點(diǎn)要主要 如果不處理有的復(fù)制的文章自身有標(biāo)簽樣式就會(huì)打亂你的頁(yè)面布局 可能css沖突
htmllentities()函數(shù)用戶和htmlspecialchars()相反用法就不說了
當(dāng)你需要那個(gè)標(biāo)簽留著可以用到strip_tags()函數(shù)
echo strip_tags($_GET['title'],'');
提交結(jié)果是你查看源碼 就會(huì)發(fā)現(xiàn)沒有了
/*
加入輸入i love 'jb51';
提交結(jié)果為 i love \'jb51\'反斜杠轉(zhuǎn)義了
那么我要想原文輸出怎么辦呢
可以用這個(gè)php函數(shù)stripslashes()
取消轉(zhuǎn)義
echo stripslashes($_GET['title']);
結(jié)果是i love 'jb51';
如果含有html標(biāo)簽?zāi)厝邕@種
i love 'jb51'
我要原型輸出怎么辦 可以用2個(gè)函數(shù)結(jié)合起來用 我已經(jīng)說過的
echo htmlspecialchars(stripslashes($_GET['title']));
結(jié)果:i love 'jb51'
*/
//number_format()這個(gè)函數(shù)是格式化貨幣函數(shù) 不同國(guó)家的習(xí)慣不一樣那么需要的貨幣顯示就不一樣例如商城中國(guó)錢是通常是這樣的格式
千分位分割用逗號(hào) 保留幾位用點(diǎn) 人稱‘小數(shù)點(diǎn)'
這個(gè)函數(shù)的用法很簡(jiǎn)單
number_format($money,小數(shù)點(diǎn)保留幾位,'小數(shù)點(diǎn)用什么分開','千分位用什么分開')
$price='123465789.233';
echo number_format($money,2,',','.');
結(jié)果:123.465.789,23
echo number_format($money,2,'.',',');//中國(guó)式的
結(jié)果:123,465,789.23
//strrev()使字符串反倒過來
$str='http://www.jb51.net';
echo strrev($str);
結(jié)果:moc.tenwii.www//:ptth
//md5就是加密 用戶名密碼必須要加密防止黑客
$a='admin';
echo $b= md5($a);
所以要處理下
當(dāng)輸入<script>alert('www.jb51.net')</script>
一提交就會(huì)運(yùn)行javascript
這樣不好 必須處理下來防止黑客找到你攻擊的入口
表單默認(rèn)提交方式是get
*/
//當(dāng)你輸入
www.jb51.net
echo htmlspecialchars($_GET['title']);//過濾了
結(jié)果:
www.jb51.net
其他查看源碼就知道已經(jīng)被替換了成< >就會(huì)在頁(yè)面原型顯示
還有一點(diǎn)要主要 如果不處理
htmllentities()函數(shù)用戶和htmlspecialchars()相反用法就不說了
當(dāng)你需要那個(gè)標(biāo)簽留著可以用到strip_tags()函數(shù)
echo strip_tags($_GET['title'],'
');
提交結(jié)果是你查看源碼 就會(huì)發(fā)現(xiàn)
/*
加入輸入i love 'jb51';
提交結(jié)果為 i love \'jb51\'反斜杠轉(zhuǎn)義了
那么我要想原文輸出怎么辦呢
可以用這個(gè)php函數(shù)stripslashes()
取消轉(zhuǎn)義
echo stripslashes($_GET['title']);
結(jié)果是i love 'jb51';
如果含有html標(biāo)簽?zāi)厝邕@種
i love 'jb51'
我要原型輸出怎么辦 可以用2個(gè)函數(shù)結(jié)合起來用 我已經(jīng)說過的
echo htmlspecialchars(stripslashes($_GET['title']));
結(jié)果:i love 'jb51'
*/
//number_format()這個(gè)函數(shù)是格式化貨幣函數(shù) 不同國(guó)家的習(xí)慣不一樣那么需要的貨幣顯示就不一樣例如商城中國(guó)錢是通常是這樣的格式
千分位分割用逗號(hào) 保留幾位用點(diǎn) 人稱‘小數(shù)點(diǎn)'
這個(gè)函數(shù)的用法很簡(jiǎn)單
number_format($money,小數(shù)點(diǎn)保留幾位,'小數(shù)點(diǎn)用什么分開','千分位用什么分開')
$price='123465789.233';
echo number_format($money,2,',','.');
結(jié)果:123.465.789,23
echo number_format($money,2,'.',',');//中國(guó)式的
結(jié)果:123,465,789.23
//strrev()使字符串反倒過來
$str='http://www.jb51.net';
echo strrev($str);
結(jié)果:moc.tenwii.www//:ptth
//md5就是加密 用戶名密碼必須要加密防止黑客
$a='admin';
echo $b= md5($a);

Hot AI Tools

Undress AI Tool
Undress images for free

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

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

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The method to get the current session ID in PHP is to use the session_id() function, but you must call session_start() to successfully obtain it. 1. Call session_start() to start the session; 2. Use session_id() to read the session ID and output a string similar to abc123def456ghi789; 3. If the return is empty, check whether session_start() is missing, whether the user accesses for the first time, or whether the session is destroyed; 4. The session ID can be used for logging, security verification and cross-request communication, but security needs to be paid attention to. Make sure that the session is correctly enabled and the ID can be obtained successfully.

To extract substrings from PHP strings, you can use the substr() function, which is syntax substr(string$string,int$start,?int$length=null), and if the length is not specified, it will be intercepted to the end; when processing multi-byte characters such as Chinese, you should use the mb_substr() function to avoid garbled code; if you need to intercept the string according to a specific separator, you can use exploit() or combine strpos() and substr() to implement it, such as extracting file name extensions or domain names.

UnittestinginPHPinvolvesverifyingindividualcodeunitslikefunctionsormethodstocatchbugsearlyandensurereliablerefactoring.1)SetupPHPUnitviaComposer,createatestdirectory,andconfigureautoloadandphpunit.xml.2)Writetestcasesfollowingthearrange-act-assertpat

In PHP, the most common method is to split the string into an array using the exploit() function. This function divides the string into multiple parts through the specified delimiter and returns an array. The syntax is exploit(separator, string, limit), where separator is the separator, string is the original string, and limit is an optional parameter to control the maximum number of segments. For example $str="apple,banana,orange";$arr=explode(",",$str); The result is ["apple","bana

JavaScript data types are divided into primitive types and reference types. Primitive types include string, number, boolean, null, undefined, and symbol. The values are immutable and copies are copied when assigning values, so they do not affect each other; reference types such as objects, arrays and functions store memory addresses, and variables pointing to the same object will affect each other. Typeof and instanceof can be used to determine types, but pay attention to the historical issues of typeofnull. Understanding these two types of differences can help write more stable and reliable code.

std::chrono is used in C to process time, including obtaining the current time, measuring execution time, operation time point and duration, and formatting analysis time. 1. Use std::chrono::system_clock::now() to obtain the current time, which can be converted into a readable string, but the system clock may not be monotonous; 2. Use std::chrono::steady_clock to measure the execution time to ensure monotony, and convert it into milliseconds, seconds and other units through duration_cast; 3. Time point (time_point) and duration (duration) can be interoperable, but attention should be paid to unit compatibility and clock epoch (epoch)

In PHP, to pass a session variable to another page, the key is to start the session correctly and use the same $_SESSION key name. 1. Before using session variables for each page, it must be called session_start() and placed in the front of the script; 2. Set session variables such as $_SESSION['username']='JohnDoe' on the first page; 3. After calling session_start() on another page, access the variables through the same key name; 4. Make sure that session_start() is called on each page, avoid outputting content in advance, and check that the session storage path on the server is writable; 5. Use ses

ToaccessenvironmentvariablesinPHP,usegetenv()orthe$_ENVsuperglobal.1.getenv('VAR_NAME')retrievesaspecificvariable.2.$_ENV['VAR_NAME']accessesvariablesifvariables_orderinphp.iniincludes"E".SetvariablesviaCLIwithVAR=valuephpscript.php,inApach
