>  기사  >  백엔드 개발  >  PHP 개발을 위한 8가지 필수 기능

PHP 개발을 위한 8가지 필수 기능

怪我咯
怪我咯원래의
2017-06-29 10:09:541268검색

PHP를 개발하는 프로그래머는 PHP에 내장된 함수가 많이 있다는 것을 알아야 합니다. 이 문서에서는 개발에 매우 ​​실용적인 8가지 필수 PHP 함수를 공유합니다. 모든 PHP 개발자가 마스터할 수 있기를 바랍니다.

1. 함수 매개변수를 원하는 만큼 전달하세요.
.NET 또는 J***A 프로그래밍에서는 일반적으로 함수 매개변수의 수가 고정되어 있지만 PHP에서는 원하는 만큼의 매개변수를 사용할 수 있습니다. 다음 예는 PHP 함수의 기본 매개변수를 보여줍니다.

// 两个默认参数的函数 
function foo($arg1 = ”, $arg2 = ”) { 
echo “arg1: $arg1\n”; 
echo “arg2: $arg2\n”; 
} 
foo(‘hello','world'); 
/* 输出:
arg1: hello
arg2: world
*/ 
foo(); 
/* 输出:
arg1:
arg2:
*/

다음 예는 func_get_args() 메서드를 사용하는 PHP의 변수 매개변수 사용입니다.

// 是的,形参列表为空 
function foo() { 
// 取得所有的传入参数的数组 
$args = func_get_args(); 
foreach ($args as $k => $v) { 
echo “arg”.($k+1).”: $v\n”; 
} 
} 
foo(); 
/* 什么也不会输出 */ 
foo(‘hello'); 
/* 输出
arg1: hello
*/ 
foo(‘hello', ‘world', ‘again'); 
/* 输出
arg1: hello
arg2: world
arg3: again
*/

2 glob()을 사용하여 찾습니다. files
대부분의 PHP 함수의 함수 이름은 문자 그대로 그 목적을 이해할 수 있지만, glob()을 보면 실제로 그것이 무엇을 위해 사용되는지 알 수 없습니다. 파일을 찾는 데 사용하려면 아래 사용법을 참조하세요.

// 取得所有的后缀为PHP的文件 
$files = glob(‘*.php'); 
print_r($files); 
/* 输出:
Array
(
[0] => phptest.php
[1] => pi.php
[2] => post_output.php
[3] => test.php
)
*/
 
你还可以查找多种后缀名:
// 取PHP文件和TXT文件 
$files = glob(‘*.{php,txt}', GLOB_BRACE); 
print_r($files); 
/* 输出:
Array
(
[0] => phptest.php
[1] => pi.php
[2] => post_output.php
[3] => test.php
[4] => log.txt
[5] => test.txt
13.
)
*/

경로를 추가할 수도 있습니다:

$files = glob(‘../images/a*.jpg'); 
print_r($files); 
/* 输出:
Array
(
[0] => ../images/apple.jpg
[1] => ../images/art.jpg
)
*/

절대 경로를 얻으려면 realpath() 함수를 호출할 수 있습니다:

$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\apple.jpg
[1] => C:\wamp\www\images\art.jpg
)
*/

3. 메모리 사용량 정보 가져오기

PHP의 메모리 재활용 메커니즘은 이미 매우 강력합니다. 또한 PHP 스크립트를 사용하여 현재 메모리 사용량을 가져오려면 memory_get_usage() 함수를 호출하고 를 호출하세요. memory_get_peak_usage() 함수는 사용된 메모리의 최고 값을 가져옵니다. 참조 코드는 다음과 같습니다.

echo “Initial: “.memory_get_usage().” bytes \n”; 
/* 输出
Initial: 361400 bytes
*/ 
// 使用内存 
for ($i = 0; $i < 100000; $i++) { 
$array []= md5($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
*/

4. CPU 사용량 정보 얻기

메모리 사용량을 얻기 위해 PHP의 getrusage()를 사용할 수도 있습니다. 이 방법은 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
[ru_utime.tv_usec] => 0
[ru_utime.tv_sec] => 0
[ru_stime.tv_usec] => 6269
[ru_stime.tv_sec] => 0
)
*/

이 구조는 CPU를 잘 알지 않는 한 매우 모호해 보입니다. 다음은 몇 가지 설명입니다.

ru_oublock: 출력 작업 차단

ru_inblock: 입력 작업 차단

ru_msgsnd: 보낸 메시지

ru_msgrcv: 받은 메시지

ru_maxrss: 최대 상주 세트 크기

ru_ixrss: 모든 공유 메모리 크기

ru_idrss: 총 비공유 메모리 크기

ru_minflt: 페이지 재활용

ru_majflt: 페이지 무효화

ru_nsignals: 수신된 신호

ru_nvcsw: 활성 컨텍스트 전환

ru_nivcsw: 수동 컨텍스트 전환

ru_ns wap: 스왑 영역

ru_utime .tv_usec: 사용자 모드 시간(마이크로초)

ru_utime.tv_sec: 사용자 모드 시간(초)

ru_stime.tv_usec: 시스템 커널 시간(마이크로초)

ru_stime.tv_sec: 시스템 커널 시간(초)


To 스크립트가 얼마나 많은 CPU를 사용하는지 확인하려면 "사용자 모드 시간" 및 "시스템 커널 시간" 값을 살펴봐야 합니다. 초와 마이크로초 부분은 별도로 제공됩니다. 마이크로초 값을 100만으로 나누어 초 값에 더하면 소수 부분으로 초 수를 구할 수 있습니다.

// sleep for 3 seconds (non-busy) 
sleep(3); 
$data = getrusage(); 
echo “User time: “. 
($data[&#39;ru_utime.tv_sec&#39;] + 
$data[&#39;ru_utime.tv_usec&#39;] / 1000000); 
echo “System time: “. 
($data[&#39;ru_stime.tv_sec&#39;] + 
$data[&#39;ru_stime.tv_usec&#39;] / 1000000); 
/* 输出
User time: 0.011552
System time: 0
*/
sleep是不占用系统时间的,我们可以来看下面的一个例子: 
// loop 10 million times (busy) 
for($i=0;$i<10000000;$i++) { 
} 
$data = getrusage(); 
echo “User time: “. 
($data[&#39;ru_utime.tv_sec&#39;] + 
$data[&#39;ru_utime.tv_usec&#39;] / 1000000); 
echo “System time: “. 
($data[&#39;ru_stime.tv_sec&#39;] + 
$data[&#39;ru_stime.tv_usec&#39;] / 1000000); 
/* 输出
User time: 1.424592
System time: 0.004204
*/

이 작업에는 CPU 시간이 약 14초 걸렸으며, 시스템 호출이 없었기 때문에 거의 모두 사용자 시간이었습니다.
시스템 시간은 CPU가 시스템 호출 시 커널 명령을 실행하는 데 소비하는 시간입니다. 다음은 예입니다.

$start = microtime(true); 
// keep calling microtime for about 3 seconds 
while(microtime(true) – $start < 3) { 
} 
$data = getrusage(); 
echo “User time: “. 
($data[&#39;ru_utime.tv_sec&#39;] + 
$data[&#39;ru_utime.tv_usec&#39;] / 1000000); 
echo “System time: “. 
($data[&#39;ru_stime.tv_sec&#39;] + 
$data[&#39;ru_stime.tv_usec&#39;] / 1000000); 
/* prints
User time: 1.088171
System time: 1.675315
*/

위 예가 더 많은 CPU를 소비하는 것을 볼 수 있습니다.
5. 시스템 상수 가져오기
PHP는 현재 줄 번호(LINE), 파일(FILE), 디렉터리(DIR), 함수 이름(FUNCTION), 클래스 이름(CLASS), 메소드 이름(METHOD)과 네임스페이스(NAMESPACE)는 C 언어와 매우 유사합니다.
이런 것들은 주로 디버깅에 사용된다고 생각할 수 있지만 반드시 그런 것은 아닙니다. 예를 들어 다른 파일을 포함할 때 ?FILE을 사용할 수 있습니다(물론 PHP 5.3 이후에는 DIR을 사용할 수도 있습니다).

// this is relative to the loaded script&#39;s path 
// it may cause problems when running scripts from different directories 
require_once(‘config/database.php&#39;); 
// this is always relative to this file&#39;s path 
// no matter where it was included from 
require_once(dirname(FILE) . ‘/config/database.php&#39;);

다음은 LINE을 사용하여 프로그램 디버깅에 도움이 되는 일부 디버그 정보를 출력하는 것입니다.

// 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 “Line $line: $msg\n”;
}

6 고유 ID 생성
많은 친구들이 고유 번호를 생성하기 위해 md5()를 사용하지만 md5 ()에는 몇 가지 단점이 있습니다. 1. 무질서하여 데이터베이스의 정렬 성능이 저하됩니다. 2. 너무 길어서 더 많은 저장 공간이 필요합니다. 실제로 PHP에는 고유한 ID를 생성하는 함수가 있습니다. 이 함수는 uniqid()입니다. 사용법은 다음과 같습니다.

// generate unique string 
echo uniqid(); 
/* 输出
4bd67c947233e
*/ 
// generate another unique string 
echo uniqid(); 
/* 输出
4bd67c9472340
*/

이 알고리즘은 CPU 타임스탬프를 기준으로 생성되므로 비슷한 시간대에 ID의 처음 몇 자리가 동일하므로 원할 경우 ID 정렬에도 편리합니다. 중복을 더 잘 피하려면

// 前缀 
echo uniqid(‘foo_&#39;); 
/* 输出
foo_4bd67d6cd8b8f
*/ 
// 有更多的熵 
echo uniqid(”,true); 
/* 输出
4bd67d6cd8b926.12135106
*/ 
// 都有 
echo uniqid(‘bar_&#39;,true); 
/* 输出
bar_4bd67da367b650.43684647
*/

7과 같이 ID 앞에 접두사를 추가할 수 있습니다. Serialization
PHP 직렬화 기능은 데이터를 데이터베이스에 저장해야 할 때 더 자주 사용됩니다. 또는 파일, 직렬화 및 역직렬화를 달성하기 위해 PHP에서 serialize() 및 unserialize() 메서드를 사용할 수 있습니다. 코드는 다음과 같습니다.

// 一个复杂的数组 
$myvar = array( 
‘hello&#39;, 
42, 
array(1,&#39;two&#39;), 
‘apple&#39; 
); 
// 序列化 
$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에서 이미 수행했습니다. php 버전 5.2 이상의 사용자는 json_encode() 및 json_decode() 함수를 사용하여 json 형식을 직렬화할 수 있습니다.

// a complex array
$myvar = array( 
‘hello&#39;, 
42, 
array(1,&#39;two&#39;), 
‘apple&#39; 

); 
// 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
)
*/

8、字符串压缩  
当我们说到压缩,我们可能会想到文件压缩,其实,字符串也是可以压缩的。PHP提供了 gzcompress() 和gzuncompress() 函数:

$string = 
“Lorem 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() 函数来压缩,只不用其用了不同的压缩算法。  

以上就是8个开发必备的PHP功能,是不是都很实用呢?

위 내용은 PHP 개발을 위한 8가지 필수 기능의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.