46 매우 유용한 PHP 코드 조각 (2)

黄舟
풀어 주다: 2023-03-03 18:26:01
원래의
1275명이 탐색했습니다.

16. 파일 압축을 푼다. [코드]php 코드:

function unzip($location,$newLocation)
{
        if(exec("unzip $location",$arr)){
            mkdir($newLocation);
            for($i = 1;$i< count($arr);$i++){
                $file = trim(preg_replace("~inflating: ~","",$arr[$i]));
                copy($location.&#39;/&#39;.$file,$newLocation.&#39;/&#39;.$file);
                unlink($location.&#39;/&#39;.$file);
            }
            return TRUE;
        }else{
            return FALSE;
        }
}
로그인 후 복사

구문:

unzip(' test .zip','unziped/test'); //압축이 풀린/test 폴더에 압축이 풀립니다

?>

17. 이미지 확대

[code ] php 코드:

function resize_image($filename, $tmpname, $xmax, $ymax)  
{  
    $ext = explode(".", $filename);  
    $ext = $ext[count($ext)-1];  
   
    if($ext == "jpg" || $ext == "jpeg")  
        $im = imagecreatefromjpeg($tmpname);  
    elseif($ext == "png")  
        $im = imagecreatefrompng($tmpname);  
    elseif($ext == "gif")  
        $im = imagecreatefromgif($tmpname);  
       
    $x = imagesx($im);  
    $y = imagesy($im);  
       
    if($x <= $xmax && $y <= $ymax)  
        return $im;  
   
    if($x >= $y) {  
        $newx = $xmax;  
        $newy = $newx * $y / $x;  
    }  
    else {  
        $newy = $ymax;  
        $newx = $x / $y * $newy;  
    }  
       
    $im2 = imagecreatetruecolor($newx, $newy);  
    imagecopyresized($im2, $im, 0, 0, 0, 0, floor($newx), floor($newy), $x, $y);  
    return $im2;   
}
로그인 후 복사

18. 메일을 보내려면 mail()을 사용하세요

Mandrill을 사용하여 메일을 보내는 방법에 대한 PHP 코드 조각을 제공하기 전에는 타사 서비스를 사용하고 싶지 않다면 다음 PHP 코드 조각을 사용할 수 있습니다.

[코드]php 코드:

function send_mail($to,$subject,$body)
{
$headers = "From: KOONK\r\n";
$headers .= "Reply-To: blog@koonk.com\r\n";
$headers .= "Return-Path: blog@koonk.com\r\n";
$headers .= "X-Mailer: PHP5\n";
$headers .= &#39;MIME-Version: 1.0&#39; . "\n";
$headers .= &#39;Content-type: text/html; charset=iso-8859-1&#39; . "\r\n";
mail($to,$subject,$body,$headers);
}
로그인 후 복사

구문:

$to = "admin@koonk.com";

$subject = "테스트 메일입니다.";

$body = "Hello World!";

send_mail($to,$subject,$body);

?>

19. 초를 일, 시간, 분으로 변환

[코드]php 코드:

function secsToStr($secs) {
    if($secs>=86400){$days=floor($secs/86400);$secs=$secs%86400;$r=$days.&#39; day&#39;;if($days<>1){$r.=&#39;s&#39;;}if($secs>0){$r.=&#39;, &#39;;}}
    if($secs>=3600){$hours=floor($secs/3600);$secs=$secs%3600;$r.=$hours.&#39; hour&#39;;if($hours<>1){$r.=&#39;s&#39;;}if($secs>0){$r.=&#39;, &#39;;}}
    if($secs>=60){$minutes=floor($secs/60);$secs=$secs%60;$r.=$minutes.&#39; minute&#39;;if($minutes<>1){$r.=&#39;s&#39;;}if($secs>0){$r.=&#39;, &#39;;}}
    $r.=$secs.&#39; second&#39;;if($secs<>1){$r.=&#39;s&#39;;}
    return $r;
}
로그인 후 복사

구문:

$seconds = "56789";

$output = secsToStr($seconds);

echo $output;

?>

20. 데이터베이스 연결

<?php
$DBNAME = &#39;koonk&#39;;
$HOST = &#39;localhost&#39;;
$DBUSER = &#39;root&#39;;
$DBPASS = &#39;koonk&#39;;
$CONNECT = mysql_connect($HOST,$DBUSER,$DBPASS);
if(!$CONNECT)
{
    echo &#39;MySQL Error: &#39;.mysql_error();
}
$SELECT = mysql_select_db($DBNAME);
if(!$SELECT)
{
    echo &#39;MySQL Error: &#39;.mysql_error();
}
?>
로그인 후 복사

21. 디렉터리 목록

다음 PHP 코드 조각을 사용하여 디렉터리의 모든 파일 및 폴더를 나열하세요

[코드]php 코드:

function list_files($dir)
{
    if(is_dir($dir))
    {
        if($handle = opendir($dir))
        {
            while(($file = readdir($handle)) !== false)
            {
                if($file != "." && $file != ".." && $file != "Thumbs.db"/*pesky windows, images..*/)
                {
                    echo &#39;<a target="_blank" href="&#39;.$dir.$file.&#39;">&#39;.$file.&#39;</a><br>&#39;."\n";
                }
            }
            closedir($handle);
        }
    }
}
로그인 후 복사

구문:

list_files("images/") //이것은 이미지 폴더의 모든 파일 나열

22. 사용자 언어 감지

다음 PHP 코드 조각을 사용하여 사용자 브라우저

[코드]php 코드:

23. CSV 파일 보기
function get_client_language($availableLanguages, $default=&#39;en&#39;){
    if (isset($_SERVER[&#39;HTTP_ACCEPT_LANGUAGE&#39;])) {
        $langs=explode(&#39;,&#39;,$_SERVER[&#39;HTTP_ACCEPT_LANGUAGE&#39;]);
        foreach ($langs as $value){
            $choice=substr($value,0,2);
            if(in_array($choice, $availableLanguages)){
                return $choice;
            }
        }
    } 
    return $default;
}
로그인 후 복사

[코드]php 코드:

구문:
function readCSV($csvFile){
    $file_handle = fopen($csvFile, &#39;r&#39;);
    while (!feof($file_handle) ) {
        $line_of_text[] = fgetcsv($file_handle, 1024);
    }
    fclose($file_handle);
    return $line_of_text;
}
로그인 후 복사

$csvFile = "test.csv";

$csv = readCSV($csvFile);

$a = csv[0][0] ; // 열 1 및 행 1

?>

24의 값을 가져옵니다. PHP 데이터에서 CSV 파일을 생성합니다

[ 코드]php 코드:

구문:
function generateCsv($data, $delimiter = &#39;,&#39;, $enclosure = &#39;"&#39;) {
   $handle = fopen(&#39;php://temp&#39;, &#39;r+&#39;);
   foreach ($data as $line) {
           fputcsv($handle, $line, $delimiter, $enclosure);
   }
   rewind($handle);
   while (!feof($handle)) {
           $contents .= fread($handle, 8192);
   }
   fclose($handle);
   return $contents;
}
로그인 후 복사

$data[0] = "사과";

$data [1] = "오렌지" ;

generateCsv($data, $delimiter = ',', $enclosure = '"');

?>

25 . XML 데이터 구문 분석

[코드]php 코드:

26. JSON 데이터 구문 분석
$xml_string="<!--?xml version=&#39;1.0&#39;?-->
<moleculedb>
    <molecule name="Benzine">
        <symbol>ben</symbol>
        <code>A</code>
    </molecule>
    <molecule name="Water">
        <symbol>h2o</symbol>
        <code>K</code>
    </molecule>
</moleculedb>";
  
//load the xml string using <a href="http://www.php-z.com/" target="_blank" class="relatedlink">Simple</a>xml function
$xml = simplexml_load_string($xml_string);
  
//loop through the each node of molecule
foreach ($xml->molecule as $record)
{
   //attribute are accessted by
   echo $record[&#39;name&#39;], &#39;  &#39;;
   //node are accessted by -> operator
   echo $record->symbol, &#39;  &#39;;
   echo $record->code, &#39;<br>&#39;;
}
로그인 후 복사

[코드]php 코드:

27. URL
$json_string=&#39;{"id":1,"name":"rolf","country":"russia","office":["google","oracle"]} &#39;;
$obj=json_decode($json_string);
//print the parsed data
echo $obj->name; //displays rolf
echo $obj->office[0]; //displays google
로그인 후 복사

이 PHP 스니펫을 사용하면 사용자가 로그인 후 이전에 방문했던 페이지로 직접 이동할 수 있습니다.

[코드]php 코드:

구문:
function current_url()
{
$url = "http://" . $_SERVER[&#39;HTTP_HOST&#39;] . $_SERVER[&#39;REQUEST_URI&#39;];
$validURL = str_replace("&", "&", $url);
return validURL;
}
로그인 후 복사

echo "현재 위치: ".current_url();

?>

28. 모든 Twitter 계정

[code]php 코드:

구문:
function my_twitter($username) 
{
     $no_of_tweets = 1;
     $feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=" . $no_of_tweets;
     $xml = simplexml_load_file($feed);
    foreach($xml->children() as $child) {
        foreach ($child as $value) {
            if($value->getName() == "link") $link = $value[&#39;href&#39;];
            if($value->getName() == "content") {
                $content = $value . "";
        echo &#39;<p class="twit">&#39;.$content.&#39; <a class="twt" href="&#39;.$link.&#39;" title="">  </a></p>&#39;;
            }    
        }
    }    
}
로그인 후 복사

$handle = "koonktech";

my_twitter($handle);

?>

29. 리트윗 수

이 PHP 스니펫을 사용하여 페이지가 얼마나 많이 전달되는지 감지하세요. URL이 있습니까?

[코드]php 코드:

구문:
function tweetCount($url) {
    $content = file_get_contents("http://api.tweetmeme.com/url_info?url=".$url);
    $element = new SimpleXmlElement($content);
    $retweets = $element->story->url_count;
    if($retweets){
        return $retweets;
    } else {
        return 0;
    }
}
로그인 후 복사

$url = "http :// blog.koonk.com";

$count = tweetCount($url);

return $count;

?>

30. 계산 두 날짜의 차이

[코드]php 코드:

<!--?php
$date1 = date( &#39;Y-m-d&#39; );
$date2 = "2015-12-04";
$diff = abs(strtotime($date2) - strtotime($date1));
$years = floor($diff / (365*60*60*24));
$months = floor(($diff - $years * 365*60*60*24) / (30*60*60*24));
$days = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24)/ (60*60*24));
printf("%d years, %d months, %d days\n", $years, $months, $days);
-------------------------------------------------------- OR
$date1 = new DateTime("2007-03-24");
$date2 = new DateTime("2009-06-26");
$interval = $date1--->diff($date2);
echo "difference " . $interval->y . " years, " . $interval->m." months, ".$interval->d." days "; 
// shows the total amount of days (not divided into years, months and days like above)
echo "difference " . $interval->days . " days ";
-------------------------------------------------------- OR
     
     
/**
 * Calculate differences between two dates with precise semantics. <a href="http://www.php-z.com/" target="_blank" class="relatedlink">Base</a>d on PHPs DateTime::diff()
 * implementation by Derick Rethans. Ported to PHP by Emil H, 2011-05-02. No rights reserved.
 * 
 * See here for original code:
 * http://svn.php.net/viewvc/php/php-src/trunk/ext/date/lib/tm2unixtime.c?revision=302890&view=markup
 * http://svn.php.net/viewvc/php/php-src/trunk/ext/date/lib/interval.c?revision=298973&view=markup
 */
function _date_range_limit($start, $end, $adj, $a, $b, $result)
{
    if ($result[$a] < $start) {
        $result[$b] -= intval(($start - $result[$a] - 1) / $adj) + 1;
        $result[$a] += $adj * intval(($start - $result[$a] - 1) / $adj + 1);
    }
    if ($result[$a] >= $end) {
        $result[$b] += intval($result[$a] / $adj);
        $result[$a] -= $adj * intval($result[$a] / $adj);
    }
    return $result;
}
function _date_range_limit_days($base, $result)
{
    $days_in_month_leap = array(31, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
    $days_in_month = array(31, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
    _date_range_limit(1, 13, 12, "m", "y", &$base);
    $year = $base["y"];
    $month = $base["m"];
    if (!$result["invert"]) {
        while ($result["d"] < 0) {
            $month--;
            if ($month < 1) {
                $month += 12;
                $year--;
            }
            $leapyear = $year % 400 == 0 || ($year % 100 != 0 && $year % 4 == 0);
            $days = $leapyear ? $days_in_month_leap[$month] : $days_in_month[$month];
            $result["d"] += $days;
            $result["m"]--;
        }
    } else {
        while ($result["d"] < 0) {
            $leapyear = $year % 400 == 0 || ($year % 100 != 0 && $year % 4 == 0);
            $days = $leapyear ? $days_in_month_leap[$month] : $days_in_month[$month];
            $result["d"] += $days;
            $result["m"]--;
            $month++;
            if ($month > 12) {
                $month -= 12;
                $year++;
            }
        }
    }
    return $result;
}
function _date_normalize($base, $result)
{
    $result = _date_range_limit(0, 60, 60, "s", "i", $result);
    $result = _date_range_limit(0, 60, 60, "i", "h", $result);
    $result = _date_range_limit(0, 24, 24, "h", "d", $result);
    $result = _date_range_limit(0, 12, 12, "m", "y", $result);
    $result = _date_range_limit_days(&$base, &$result);
    $result = _date_range_limit(0, 12, 12, "m", "y", $result);
    return $result;
}
/**
 * Accepts two unix timestamps.
 */
function _date_diff($one, $two)
{
    $invert = false;
    if ($one > $two) {
        list($one, $two) = array($two, $one);
        $invert = true;
    }
    $key = array("y", "m", "d", "h", "i", "s");
    $a = array_combine($key, array_map("intval", explode(" ", date("Y m d H i s", $one))));
    $b = array_combine($key, array_map("intval", explode(" ", date("Y m d H i s", $two))));
    $result = array();
    $result["y"] = $b["y"] - $a["y"];
    $result["m"] = $b["m"] - $a["m"];
    $result["d"] = $b["d"] - $a["d"];
    $result["h"] = $b["h"] - $a["h"];
    $result["i"] = $b["i"] - $a["i"];
    $result["s"] = $b["s"] - $a["s"];
    $result["invert"] = $invert ? 1 : 0;
    $result["days"] = intval(abs(($one - $two)/86400));
    if ($invert) {
        _date_normalize(&$a, &$result);
    } else {
        _date_normalize(&$b, &$result);
    }
    return $result;
}
$date = "2014-12-04 19:37:22";
echo &#39;<pre class="brush:php;toolbar:false">&#39;;
print_r( _date_diff( strtotime($date), time() ) );
echo &#39;
'; ?>
로그인 후 복사

 以上就是46 个非常有用的 PHP 代码片段(二)的内容,更多相关内容请关注PHP中文网(www.php.cn)!


관련 라벨:
php
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿