欧美成人永久免费_欧美日本五月天_A级毛片免看在线_国产69无码,亚洲无线观看,精品人妻少妇无码视频,777无码专区,色大片免费网站大全,麻豆国产成人AV网,91视频网络,亚洲色无码自慰

當(dāng)前位置:網(wǎng)站首頁 >> 作文 >> php開發(fā)平臺模板

php開發(fā)平臺模板

格式:DOC 上傳日期:2023-05-01 15:51:16
php開發(fā)平臺模板
時間:2023-05-01 15:51:16     小編:zdfb

在日常學(xué)習(xí),、工作或生活中,,大家總少不了接觸作文或者范文吧,通過文章可以把我們那些零零散散的思想,聚集在一塊,。大家想知道怎么樣才能寫一篇比較優(yōu)質(zhì)的范文嗎,?下面是小編幫大家整理的優(yōu)質(zhì)范文,,僅供參考,,大家一起來看看吧。

php開發(fā)平臺篇一

php有哪些必備開發(fā)功能呢,?為了幫助大家了解更多php功能,,yjbys小編為大家分析很實用的php必備開發(fā)功能如下:

或者java編程中,一般函數(shù)參數(shù)個數(shù)都是固定的,,但是php允許你使用任意個數(shù)的參數(shù),。下面這個示例向你展示了php函數(shù)的默認(rèn)參數(shù):

// 兩個默認(rèn)參數(shù)的函數(shù)

function foo($arg1 = ”, $arg2 = ”) {

echo “arg1: $arg1\n”;

echo “arg2: $arg2\n”;

}

foo(‘hello’,'world’);

/* 輸出:

arg1: hello

arg2: world

*/

foo();

/* 輸出:

arg1:

arg2:

*/

//下面這個示例是php的不定參數(shù)用法,其使用到了 func_get_args()方法:

// 是的,,形參列表為空

function foo() {

// 取得所有的傳入?yún)?shù)的數(shù)組

$args = func_get_args();

foreach ($args as $k => $v) {

echo “arg”.($k+1).”: $v\n”;

}

}

foo();

/* 什么也不會輸出 */

foo(‘hello’);

/* 輸出

arg1: hello

*/

foo(‘hello’, ‘world’, ‘a(chǎn)gain’);

/* 輸出

arg1: hello

arg2: world

arg3: again

大部分php函數(shù)的函數(shù)名從字面上都可以理解其用途,但是當(dāng)你看到 glob() 的時候,,你也許并不知道這是用來做什么的,,其實glob()和scandir() 一樣,可以用來查找文件,,請看下面的用法:

// 取得所有的后綴為php的文件

$files = glob(‘*.php’);

print_r($files);

/* 輸出:

array

(

[0] =>

[1] =>

[2] =>

[3] =>

)

*/

你還可以查找多種后綴名:

// 取php文件和txt文件

$files = glob(‘*.{php,txt}’, glob_brace);

print_r($files);

/* 輸出:

array

(

[0] =>

[1] =>

[2] =>

[3] =>

[4] =>

[5] =>

)

*/

你還可以加上路徑:

$files = glob(‘../images/a*.jpg’);

print_r($files);

/* 輸出:

array

(

[0] => ../images/

[1] => ../images/

)

*/

如果你想得到絕對路徑,,你可以調(diào)用 realpath() 函數(shù):

$files = glob(‘../images/a*.jpg’);

// applies the function to each array element

$files = array_map(‘realpath’,$files);

print_r($files);

/* output looks like:

array

(

[0] => c:\wamp\www\images\

[1] => c:\wamp\www\images\

)

*/

php的內(nèi)存回收機制已經(jīng)非常強大,,你也可以使用php腳本獲取當(dāng)前內(nèi)存的使用情況,調(diào)用memory_get_usage() 函數(shù)獲取當(dāng)期內(nèi)存使用情況,,調(diào)用memory_get_peak_usage() 函數(shù)獲取內(nèi)存使用的峰值,。參考代碼如下:

echo “initial: “.memory_get_usage().” bytes \n”;

/* 輸出

initial: 361400 bytes

*/

// 使用內(nèi)存

for ($i = 0; $i < 100000; $i++) {

$array []= md5($i);

}

// 刪除一半的內(nèi)存

for ($i = 0; $i < 100000; $i++) {

unset($array[$i]);

}

echo “final: “.memory_get_usage().” bytes \n”;

/* prints

final: 885912 bytes

*/

echo “peak: “.memory_get_peak_usage().” bytes \n”;

/* 輸出峰值

peak: 13687072 bytes

*/

獲取了內(nèi)存使用情況,也可以使用php的 getrusage()獲取cpu使用情況,,該方法在windows下不可用,。

print_r(getrusage());

/* 輸出

array

(

[ru_oublock] => 0

[ru_inblock] => 0

[ru_msgsnd] => 2

[ru_msgrcv] => 3

[ru_maxrss] => 12692

[ru_ixrss] => 764

[ru_idrss] => 3864

[ru_minflt] => 94

[ru_majflt] => 0

[ru_nsignals] => 1

[ru_nvcsw] => 67

[ru_nivcsw] => 4

[ru_nswap] => 0

[_usec] => 0

[_sec] => 0

[_usec] => 6269

[_sec] => 0

)

*/

這個結(jié)構(gòu)看上出很晦澀,除非你對cpu很了解,。下面一些解釋:

ru_oublock: 塊輸出操作

ru_inblock: 塊輸入操作

ru_msgsnd: 發(fā)送的message

ru_msgrcv: 收到的message

ru_maxrss: 最大駐留集大小

ru_ixrss: 全部共享內(nèi)存大小

ru_idrss:全部非共享內(nèi)存大小

ru_minflt: 頁回收

ru_majflt: 頁失效

ru_nsignals: 收到的信號

ru_nvcsw: 主動上下文切換

ru_nivcsw: 被動上下文切換

ru_nswap: 交換區(qū)

_usec: 用戶態(tài)時間 (microseconds)

_sec: 用戶態(tài)時間(seconds)

_usec: 系統(tǒng)內(nèi)核時間 (microseconds)

_sec: 系統(tǒng)內(nèi)核時間?(seconds)

要看到你的腳本消耗了多少cpu,,我們需要看看“用戶態(tài)的時間”和“系統(tǒng)內(nèi)核時間”的值。秒和微秒部分是分別提供的,,您可以把微秒值除以100萬,,并把它添加到秒的值后,可以得到有小數(shù)部分的秒數(shù),。

// sleep for 3 seconds (non-busy)

sleep(3);

$data = getrusage();

echo “user time: “.

($data['_sec'] +

$data['_usec'] / 1000000);

echo “system time: “.

($data['_sec'] +

$data['_usec'] / 1000000);

/* 輸出

user time: 0.011552

system time: 0

*/

是不占用系統(tǒng)時間的,,我們可以來看下面的一個例子:

// loop 10 million times (busy)

for($i=0;$i<10000000;$i++) {

}

$data = getrusage();

echo “user time: “.

($data['_sec'] +

$data['_usec'] / 1000000);

echo “system time: “.

($data['_sec'] +

$data['_usec'] / 1000000);

/* 輸出

user time: 1.424592

system time: 0.004204

*/

這花了大約14秒的cpu時間,幾乎所有的都是用戶的時間,,因為沒有系統(tǒng)調(diào)用,。傳統(tǒng)時間是cpu花費在系統(tǒng)調(diào)用上的上執(zhí)行內(nèi)核指令的時間。下面是一個例子:

$start = microtime(true);

// keep calling microtime for about 3 seconds

while(microtime(true) – $start < 3) {

}

$data = getrusage();

echo “user time: “.

($data['_sec'] +

$data['_usec'] / 1000000);

echo “system time: “.

($data['_sec'] +

$data['_usec'] / 1000000);

/* prints

user time: 1.088171

system time: 1.675315

*/

我們可以看到上面這個例子更耗cpu,。

php 提供非常有用的系統(tǒng)常量 可以讓你得到當(dāng)前的行號 (__line__),,文件 (__file__),目錄 (__dir__),,函數(shù)名 (__function__),,類名(__class__),方法名(__method__) 和名字空間 (__namespace__),,很像c語言,。

我們可以以為這些東西主要是用于調(diào)試,當(dāng)也不一定,,比如我們可以在include其它文件的.時候使用?__file__ (當(dāng)然,,你也可以在 php 5.3以后使用 __dir__ ),下面是一個例子,。

// this is relative to the loaded script’s path

// it may cause problems when running scripts from different directories

require_once(‘config/’);

// this is always relative to this file’s path

// no matter where it was included from

require_once(dirname(__file__) . ‘/config/’);

復(fù)制代碼

下面是使用 __line__ 來輸出一些debug的信息,,這樣有助于你調(diào)試程序:

// some code

// …

my_debug(“some debug message”, __line__);

/* 輸出

line 4: some debug message

*/

// some more code

// …

my_debug(“another debug message”, __line__);

/* 輸出

line 11: another debug message

*/

function my_debug($msg, $line) {

echo “l(fā)ine $line: $msg\n”;

}

很多朋友都利用md5()來生成唯一的編號,但是md5()有幾個缺點:1,、無序,,導(dǎo)致數(shù)據(jù)庫中排序性能下降。2,、太長,,需要更多的存儲空間,。其實php中自帶一個函數(shù)來生成唯一的id,這個函數(shù)就是uniqid(),。下面是用法:

// generate unique string

echo uniqid();

/* 輸出

4bd67c947233e

*/

// generate another unique string

echo uniqid();

/* 輸出

4bd67c9472340

*/

該算法是根據(jù)cpu時間戳來生成的,,所以在相近的時間段內(nèi),id前幾位是一樣的,,這也方便id的排序,,如果你想更好的避免重復(fù),可以在id前加上前綴,,如:

// 前綴

echo uniqid(‘foo_’);

/* 輸出

foo_4bd67d6cd8b8f

*/

// 有更多的熵

echo uniqid(”,true);

/* 輸出

4bd67d6cd8b926.12135106

*/

// 都有

echo uniqid(‘bar_’,true);

/* 輸出

bar_4bd67da367b650.43684647

*/

php序列化功能大家可能用的比較多,,也比較常見,當(dāng)你需要把數(shù)據(jù)存到數(shù)據(jù)庫或者文件中是,,你可以利用php中的serialize() 和 unserialize()方法來實現(xiàn)序列化和反序列化,,代碼如下:

// 一個復(fù)雜的數(shù)組

$myvar = array(

‘hello’,

42,

array(1,’two’),

‘a(chǎn)pple’

);

// 序列化

$string = serialize($myvar);

echo $string;

/* 輸出

a:4:{i:0;s:5:”hello”;i:1;i:42;i:2;a:2:{i:0;i:1;i:1;s:3:”two”;}i:3;s:5:”apple”;}

*/

// 反序例化

$newvar = unserialize($string);

print_r($newvar);

/* 輸出

array

(

[0] => hello

[1] => 42

[2] => array

(

[0] => 1

[1] => two

)

[3] => apple

)

*/

如何序列化成json格式呢,放心,,php也已經(jīng)為你做好了,,使用php 5.2以上版本的用戶可以使用json_encode() 和 json_decode() 函數(shù)來實現(xiàn)json格式的序列化,代碼如下:

// a complex array

$myvar = array(

‘hello’,

42,

array(1,’two’),

‘a(chǎn)pple’

);

// convert to a string

$string = json_encode($myvar);

echo $string;

/* prints

["hello",42,[1,"two"],”apple”]

*/

// you can reproduce the original variable

$newvar = json_decode($string);

print_r($newvar);

/* prints

array

(

[0] => hello

[1] => 42

[2] => array

(

[0] => 1

[1] => two

)

[3] => apple

)

*/

當(dāng)我們說到壓縮,,我們可能會想到文件壓縮,,其實,字符串也是可以壓縮的,。php提供了 gzcompress() 和gzuncompress() 函數(shù):

$string =

“l(fā)orem ipsum dolor sit amet, consectetur

adipiscing elit. nunc ut elit id mi ultricies

adipiscing. nulla facilisi. praesent pulvinar,

sapien vel feugiat vestibulum, nulla dui pretium orci,

non ultricies elit lacus quis ante. lorem ipsum dolor

sit amet, consectetur adipiscing elit. aliquam

pretium ullamcorper urna quis iaculis. etiam ac massa

sed turpis tempor luctus. curabitur sed nibh eu elit

mollis congue. praesent ipsum diam, consectetur vitae

ornare a, aliquam a nunc. in id magna pellentesque

tellus posuere adipiscing. sed non mi metus, at lacinia

augue. sed magna nisi, ornare in mollis in, mollis

sed nunc. etiam at justo in leo congue mollis.

nullam in neque eget metus hendrerit scelerisque

eu non enim. ut malesuada lacus eu nulla bibendum

id euismod urna sodales. “;

$compressed = gzcompress($string);

echo “original size: “. strlen($string).”\n”;

/* 輸出原始大小

original size: 800

*/

echo “compressed size: “. strlen($compressed).”\n”;

/* 輸出壓縮后的大小

compressed size: 418

*/

// 解壓縮

$original = gzuncompress($compressed);

幾乎有50% 壓縮比率,。同時,你還可以使用 gzencode() 和 gzdecode() 函數(shù)來壓縮,,只不用其用了不同的壓縮算法,。

s("content_relate");

【php必備功能開發(fā)】相關(guān)文章:

1.

php和java的功能

2.

php開發(fā)提高效率技巧

3.

php開發(fā)工具推薦2017

4.

php高級開發(fā)工程師的具體職責(zé)

5.

php開發(fā)主管的主要職責(zé)

6.

php 開發(fā)環(huán)境配置介紹

7.

php開發(fā)經(jīng)理的主要職責(zé)

8.

php軟件開發(fā)求職簡歷

全文閱讀已結(jié)束,如果需要下載本文請點擊

下載此文檔
a.付費復(fù)制
付費獲得該文章復(fù)制權(quán)限
特價:5.99元 10元
微信掃碼支付
已付款請點這里
b.包月復(fù)制
付費后30天內(nèi)不限量復(fù)制
特價:9.99元 10元
微信掃碼支付
已付款請點這里 聯(lián)系客服