>  기사  >  백엔드 개발  >  9가지 매우 실용적인 PHP 코드 조각을 직접 사용하세요(2).

9가지 매우 실용적인 PHP 코드 조각을 직접 사용하세요(2).

WBOY
WBOY원래의
2016-08-08 09:32:001178검색

모든 프로그래머와 개발자는 자신이 좋아하는 코드 조각에 대해 토론하는 것을 좋아합니다. 특히 PHP 개발자가 웹 페이지를 코딩하거나 애플리케이션을 만드는 데 몇 시간을 소비할 때 이러한 코드의 중요성을 더욱 잘 알고 있습니다. 코딩 시간을 절약하기 위해 저자는 개발자의 작업 효율성 향상에 도움이 되는 좀 더 실용적인 코드 조각을 수집했습니다. >>>

 1) PHP를 사용한 Whois 쿼리 ——PHP를 사용하여 Whois 요청 얻기

특정 도메인 이름의 whois 정보를 얻으려면 이 코드를 사용하세요. 도메인 이름을 매개변수로 사용하고 모든 도메인 이름에 대한 정보를 표시합니다.

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

function whois_query($domain) {

    // fix the domain name:

    $domain = strtolower(trim($domain));

    $domain = preg_replace('/^http:///i', '', $domain);

    $domain = preg_replace('/^www./i', '', $domain);

    $domain = explode('/', $domain);

    $domain = trim($domain[0]);

    // split the TLD from domain name

    $_domain = explode('.', $domain);

    $lst = count($_domain)-1;

    $ext = $_domain[$lst];

    // You find resources and lists

    // like these on wikipedia:

    //

    // <a href="http://de.wikipedia.org/wiki/Whois">http://de.wikipedia.org/wiki/Whois</a>

    //

    $servers = array(

        "biz" => "whois.neulevel.biz",

        "com" => "whois.internic.net",

        "us" => "whois.nic.us",

        "coop" => "whois.nic.coop",

        "info" => "whois.nic.info",

        "name" => "whois.nic.name",

        "net" => "whois.internic.net",

        "gov" => "whois.nic.gov",

        "edu" => "whois.internic.net",

        "mil" => "rs.internic.net",

        "int" => "whois.iana.org",

        "ac" => "whois.nic.ac",

        "ae" => "whois.uaenic.ae",

        "at" => "whois.ripe.net",

        "au" => "whois.aunic.net",

        "be" => "whois.dns.be",

        "bg" => "whois.ripe.net",

        "br" => "whois.registro.br",

        "bz" => "whois.belizenic.bz",

        "ca" => "whois.cira.ca",

        "cc" => "whois.nic.cc",

        "ch" => "whois.nic.ch",

        "cl" => "whois.nic.cl",

        "cn" => "whois.cnnic.net.cn",

        "cz" => "whois.nic.cz",

        "de" => "whois.nic.de",

        "fr" => "whois.nic.fr",

        "hu" => "whois.nic.hu",

        "ie" => "whois.domainregistry.ie",

        "il" => "whois.isoc.org.il",

        "in" => "whois.ncst.ernet.in",

        "ir" => "whois.nic.ir",

        "mc" => "whois.ripe.net",

        "to" => "whois.tonic.to",

        "tv" => "whois.tv",

        "ru" => "whois.ripn.net",

        "org" => "whois.pir.org",

        "aero" => "whois.information.aero",

        "nl" => "whois.domain-registry.nl"

    );

    if (!isset($servers[$ext])){

        die('Error: No matching nic server found!');

    }

    $nic_server = $servers[$ext];

    $output = '';

    // connect to whois server:

    if ($conn = fsockopen ($nic_server, 43)) {

        fputs($conn, $domain."rn");

        while(!feof($conn)) {

            $output .= fgets($conn,128);

        }

        fclose($conn);

    }

    else { die('Error: Could not connect to ' . $nic_server . '!'); }

    return $output;

}

 2) TextMagic API를 사용하여 PHP로 문자 메시지 보내기——TextMagic API를 사용하여 PHP 테스트 정보 얻기

TextMagic은 휴대폰으로 SMS를 쉽게 보낼 수 있는 강력한 핵심 API를 도입합니다. 이 API는 결제가 필요합니다.

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

the TextMagic PHP lib

require('textmagic-sms-api-php/TextMagicAPI.php');

// Set the username and password information

$username = 'myusername';

$password = 'mypassword';

// Create a new instance of TM

$router = new TextMagicAPI(array(

    'username' => $username,

    'password' => $password

));

// Send a text message to '999-123-4567'

$result = $router->send('Wake up!', array(9991234567), true);

// result:  Result is: Array ( [messages] => Array ( [19896128] => 9991234567 ) [sent_text] => Wake up! [parts_count] => 1 )

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
TextMagic PHP 라이브러리 요구'textmagic-sms-api-php/TextMagicAPI.php' // 사용자 이름과 비밀번호 정보 설정 $username 'myusername' $password '내 비밀번호' // TM의 새 인스턴스 생성 $router TextMagicAPI(배열 '사용자 이름' => $사용자 이름, '비밀번호' => $password )); // '999-123-4567'로 문자 메시지 보내기 $result $router->send('일어나세요!'배열(9991234567), true); // 결과: 결과: Array ( [messages] => Array ( [19896128] => 9991234567 ) [sent_text] => 일어나세요! [parts_count] => 1 ) 코드>

 3) 메모리 사용량 정보 확인——메모리 사용량 확인

이 코드는 메모리 사용량을 확인하는 데 도움이 됩니다.

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

echo "Initial: ".memory_get_usage()." bytes n";

/* prints

Initial: 361400 bytes

*/

// let's use up some memory

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

$array []= md5($i);

}

// let's remove half of the array

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";

/* prints

Peak: 13687072 bytes

*/

1

2

3

4

5

6

1

2

3

4

5

<?php // display source code $lines = file('http://google.com/'); foreach ($lines as $line_num => $line) {

    // loop thru each line and prepend line numbers

    echo "Line #{$line_num} : " . htmlspecialchars($line) . "

n";

}

7

8

9

10

11

1

2

3

4

5

function data_uri($file, $mime) {

  $contents=file_get_contents($file);

  $base64=base64_encode($contents);

  echo "data:$mime;base64,$base64";

}

12 13 14 15 16 17 18 19 20 21 22 23 24
echo "초기: ".memory_get_usage()." 바이트 n"; <code>/* 인쇄 초기: 361400바이트 */ // 메모리를 좀 써보자 ($i = 0; $i < 100000; $i++) {<🎜> <🎜> $array []= md5($i);< 🎜> <🎜>}<🎜> <🎜>//배열의 절반을 제거합시다<🎜> <🎜> ($i = 0; $i < 100000; $i++) {<🎜> <🎜> 설정 해제($array[$i]) ;<🎜> <🎜>}<🎜> <🎜>echo "최종: ".memory_get_usage()." 바이트 n";< /코드><🎜> <🎜><code>/* 인쇄<🎜> <🎜>최종: 885912바이트<🎜> <🎜>*/<🎜> <🎜>echo "피크: ".memory_get_peak_usage()." 바이트 n";< /코드><🎜> <🎜><code>/* 인쇄<🎜> <🎜>최대: 13687072바이트<🎜> <🎜>*/<🎜> <🎜>
<🎜> <🎜> <🎜> 4) 모든 웹페이지의 소스 코드 표시——모든 웹페이지의 소스 코드 보기<🎜> <🎜> 웹 페이지의 소스 코드를 보려면 두 번째 줄의 URL을 변경하면 웹 페이지에 소스 코드가 표시됩니다. <🎜> <🎜> <🎜> <🎜>?<🎜> <본체>
<🎜>1<🎜> <🎜>2<🎜> <🎜>3<🎜> <🎜>4<🎜> <🎜>5<🎜> <🎜> <🎜><?php // 소스 코드 표시 $lines = file('http://google.com/') foreach ($lines as $line_num => $ 라인) { // 각 줄을 반복하고 줄 번호를 앞에 추가합니다. echo "행 #{$line_num} : " .htmlspecialchars($line) " n"; }
 5) 데이터 uri 생성——데이터 uri 생성 이 코드를 사용하면 HTML/CSS에 이미지를 삽입하는 데 매우 유용하고 HTTP 요청을 저장하는 데 도움이 되는 데이터 Uri를 생성할 수 있습니다. ?
1 2 3 4 5 함수 data_uri($file, $mime) { $contents=file_get_contents($file 코드>); $base64=base64_encode($contents 코드>); 에코 "data:$mime;base64,$base64"; }

 6) IP로 위치 탐지——IP를 통해 지리적 위치 검색

이 코드는 특정 IP를 찾는 데 도움이 됩니다. 함수 매개변수에 IP를 입력하면 위치를 감지할 수 있습니다.

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

function detect_city($ip) {

        $default = 'UNKNOWN';

        if (!is_string($ip) || strlen($ip) < 1 || $ip == '127.0.0.1' || $ip == 'localhost') $ip = '8.8.8.8'; $curlopt_useragent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)'; $url = 'http://ipinfodb.com/ip_locator.php?ip=' . urlencode($ip); $ch = curl_init(); $curl_opt = array( CURLOPT_FOLLOWLOCATION => 1,

            CURLOPT_HEADER      => 0,

            CURLOPT_RETURNTRANSFER  => 1,

            CURLOPT_USERAGENT   => $curlopt_useragent,

            CURLOPT_URL       => $url,

            CURLOPT_TIMEOUT         => 1,

            CURLOPT_REFERER         => 'http://' . $_SERVER['HTTP_HOST'],

        );

        curl_setopt_array($ch, $curl_opt);

        $content = curl_exec($ch);

        if (!is_null($curl_info)) {

            $curl_info = curl_getinfo($ch);

        }

        curl_close($ch);

        if ( preg_match('{

City : ([^<]*)

}i’, $content, $regs) ) { $city = $regs[1]; } if ( preg_match(‘{

State/Province : ([^<]*)

 

}i’, $content, $regs) ) { $state = $regs[1]; } if( $city!=” && $state!=” ){ $location = $city . ‘, ‘ . $state; return $location; }else{ return $default; } }

 7) 브라우저 언어 감지 ——브라우저 언어 확인

브라우저에서 사용하는 코드 스크립트 언어를 감지합니다.

?

1

2

3

4

5

6

7

8

9

10

11

12

13

function get_client_language($availableLanguages, $default='en'){

    if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {

        $langs=explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']);

        foreach ($langs as $value){

            $choice=substr($value,0,2);

            if(in_array($choice, $availableLanguages)){

                return $choice;

            }

        }

    }

    return $default;

}

1 2

3

4

5

1

2

3

4

5

if ($_SERVER['HTTPS'] != "on") {

    echo "This is not HTTPS";

}else{

    echo "This is HTTPS";

}

6 7 8 9 10 11 12 13
함수 get_client_언어($availableLanguages='en'){ (isset($_SERVER['HTTP_ACCEPT_LANGUAGE' ])) { $langs=폭발(','<code>,$_SERVER['HTTP_ACCEPT_LANGUAGE']); foreach ($langs as $value 코드>){ $choice=substr($value 코드>,0,2); (in_array($choice$availableLanguages)){ $choice; } } } ; }  8) 서버가 HTTPS인지 확인——서버가 HTTPS인지 확인 ?
1 2 3 4 5 ($_SERVER['HTTPS'] != "설정") { echo "HTTPS가 아닙니다."; }{ echo "HTTPS입니다."; }

  9) PHP 배열에서 CSV 파일 생성——재PHP数组中生成.csv 文件

?

1

2

3

4

5

6

7

8

9

10

11

12

function generateCsv($data, $delimiter = ',', $enclosure = '"') {

   $handle = fopen('php://temp', 'r+');

   foreach ($data as $line) {

           fputcsv($handle, $line, $delimiter, $enclosure);

   }

   rewind($handle);

   while (!feof($handle)) {

           $contents .= fread($handle, 8192);

   }

   fclose($handle);

   return $contents;

}

1 2

3

4

5 6 7 8 9 10 11 12
함수 generateCsv($data, $delimiter = ',', $enclosure = '"') {    $handle = fopen('php:/ /temp', 'r+');    foreach ($data as $line 코드>) {            fputcsv($handle, $line code>, $delimiter, $enclosure);    }    되감기($handle);    동안 (!feof($handle 코드>)) {            $contents .= fread($handle<code>, 8192);    }    fclose($handle);    반환 $contents; }
  英文출자:Designzum 以上就介绍了直接拿来用 九个超实用的PHP 대체 이미지 段 (두), 包括了砆码사이드 内容, 希望对PHP教程兴趣的朋友所帮助.
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.