Class
  • Tip&Tech
[ÇÔ¼ö] °£´ÜÇÏ°Ô ¸¸µé¾îº» ¸ÞÀÏÀü¼Û Ŭ·¡½º
±Û¾´ÀÌ ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§À½¾Ç»ç¶û ³¯ Â¥ 08-08-05 20:33 Á¶ ȸ 12475
°£ÆíURL https://www.phpschool.com/link/tipntech/62435 º¹»ç

SyntaxHighlight·Î º¸±â

<?php

class Sendmail
{
/*
* ¸ÞÀϹ߼ÛÀ» À§ÇÑ Å¬·¡½º
* ¿ÜºÎ SMTP ¼­¹ö¸¦ Áö¿øÇÕ´Ï´Ù.
* Author: Gwangsoo, Ryu (piver@ineemail.com)
*/

protected $UseSMTPServer = false; // ´Ù¸¥ SMTP ¼­¹ö¸¦ ÀÌ¿ëÇÒ °æ¿ì
protected $SMTPServer; // SMTP ¼­¹ö µµ¸ÞÀÎ
protected $SMTPPort = 25; // Port
protected $SMTPAuthUser; // SMTP ÀÎÁõ »ç¿ëÀÚ
protected $SMTPAuthPasswd; // SMTP ÀÎÁõ ºñ¹Ð¹øÈ£
protected $Socket;

protected $MailHeaderArray = array(); // ¸ÞÀÏÇì´õ¸¦ ´ãÀ» ¹è¿­

protected $MailFrom; // º¸³»´Â »ç¶÷
protected $ReplyTo; // ȸ½Å¹ÞÀ» ÁÖ¼Ò (±âº»ÀûÀ¸·Î º¸³»´Â ¸ÞÀÏÁÖ¼Ò°¡ µÈ´Ù)
protected $MailTo = array(); // ¹Þ´Â »ç¶÷À» ´ãÀ» ¹è¿­

protected $Subject; // ¸ÞÀÏÁ¦¸ñ
protected $MailBody; // ¸ÞÀϺ»¹®
protected $Charset = 'EUC-KR'; // ¸ÞÀϱ⺻ ij¸¯ÅͼÂ
protected $Attach = array(); // ÀÎÄÚµùµÈ ÷ºÎÆÄÀÏ

protected $Boundary; // Bound

public function __construct($charset = 'EUC-KR')
{
$this->Boundary = md5(uniqid(microtime())); // ¹Ù¿îµå¸¦ ÃʱâÈ­ÇÑ´Ù
if(!empty($charset)) $this->Charset = $charset; // ij¸¯ÅͼÂ
}

public function setFrom($email, $name = null)
{
// º¸³»´Â ¸ÞÀÏ
$this->setReplyTo($email);
return $this->MailFrom = ($name) ? $name . ' <' . $email . '>' : $email;
}

public function setReplyTo($email)
{
// ȸ½ÅÁÖ¼Ò - ±âº»ÀûÀ¸·Î º¸³»´Â ¸ÞÀÏÀ» ȸ½ÅÁÖ¼Ò·Î ¼ÂÇÑ´Ù
return $this->ReplyTo = $email;
}

public function setSubject($Subject)
{
// Á¦¸ñ
return $this->Subject = $Subject;
}

public function addTo($email, $name = null)
{
// ¹Þ´Â ¸ÞÀÏÀ» Ãß°¡ÇÑ´Ù
return $this->MailTo[$email] = $name;
}

public function addAttach($Filename, $Source)
{
// ÷ºÎÆÄÀÏÀ» Ãß°¡ÇÑ´Ù
$fp = fopen($Source, 'r'); // ¼Ò½ºÆÄÀÏÀ» ¿¬´Ù
if($fp) {
$fBody = fread($fp, filesize($Source)); // ÆÄÀÏÀÇ ³»¿ëÀ» Àоî¿Â´Ù
@fclose($fp);

$this->Attach[$Filename] = $fBody; // Attach ¹è¿­¿¡ ´ã´Â´Ù
}
}

public function setMailBody($Body, $useHtml = true)
{
if(!$useHtml) { // ¸ÞÀϺ»¹®ÀÌ HTML Çü½ÄÀÌ ¾Æ´Ï¸é HTML Çü½ÄÀ¸·Î ¹Ù²Ù¾îÁØ´Ù
$Body = '
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=' . $this->Charset . '">
<style type="text/css">
BODY, TH, TD, DIV, SPAN, P, INPUT {
font-size:12px;
line-height:17px;
}
BODY, DIV { text-align:justify; }
</style>
</head>

<body>
' . nl2br($Body) . '
</body>
</html>
';
}

$this->MailBody = $Body; // ¸ÞÀϺ»¹®À» ¼ÂÇÑ´Ù
}

protected function AddBasicHeader()
{
// ¸ÞÀÏÀÇ ±âº» Çì´õ¸¦ ÀÛ¼ºÇÑ´Ù
$this->addHeader('From', $this->MailFrom);
$this->addHeader('User-Agent', 'Dabuilder Mail System');
$this->addHeader('X-Accept-Language', 'ko, en');
$this->addHeader('X-Sender', $this->ReplyTo);
$this->addHeader('X-Mailer', 'PHP');
$this->addHeader('X-Priority', 1);
$this->addHeader('Reply-to', $this->ReplyTo);
$this->addHeader('Return-Path', $this->ReplyTo);

if(count($this->Attach) > 0) { // ÷ºÎÆÄÀÏÀÌ ÀÖÀ» °æ¿ìÀÇ Çì´õ
$this->addHeader('MIME-Version', '1.0');
$this->addHeader('Content-Type', 'Multipart/mixed; boundary = "' . $this->Boundary . '"');
} else { // ÷ºÎÆÄÀÏÀÌ ¾ø´Â ÀÏ¹Ý ¸ÞÀÏÀÏ °æ¿ìÀÇ Çì´õ
$this->addHeader('Content-Type', 'text/html; charset=' . $this->Charset);
$this->addHeader('Content-Transfer-Encoding', '8bit');
}
}

protected function addHeader($Content, $Value)
{
// ¸ÞÀÏÇì´õÀÇ ³»¿ëÀ» Ãß°¡ÇÑ´Ù
$this->MailHeaderArray[$Content] = $Value;
}

protected function MailAttach()
{
// ÷ºÎÆÄÀÏÀÌ ÀÖÀ» °æ¿ì ¸ÞÀϺ»¹®¿¡ ÷ºÎÆÄÀÏÀ» µ¡ºÙÀδÙ
$arrRet = array();

if(count($this->Attach) > 0) {
foreach($this->Attach as $Filename => $fBody) {
$tmpAttach = "--" . $this->Boundary . "\r\n";
$tmpAttach .= "Content-Type: application/octet-stream\r\n";
$tmpAttach .= "Content-Transfer-Encoding: base64\r\n";
$tmpAttach .= "Content-Disposition: attachment; filename=\"" . $Filename . "\"\r\n\r\n";
$tmpAttach .= $this->encodingContents($fBody) . "\r\n\r\n";

$arrRet[] = $tmpAttach;
}
}

return implode('', $arrRet);
}

public function setUseSMTPServer($boolean = null)
{
// ¿ÜºÎ SMTP ¼­¹ö¸¦ ÀÌ¿ëÇÒ °ÍÀÎÁö¸¦ ¼ÂÇÑ´Ù
return (is_null($boolean)) ? $this->UseSMTPServer : $this->UseSMTPServer = $boolean;
}

public function setSMTPServer($smtpServer = null, $port = 25)
{
// ¿ÜºÎ SMTP ¼­¹ö¸¦ ÀÌ¿ëÇÒ °æ¿ì SMTP ¼­¹ö¸¦ ¼³Á¤ÇÑ´Ù
$this->SMTPPort = $port;
return (is_null($smtpServer)) ? $this->SMTPServer : $this->SMTPServer = $smtpServer;
}

public function setSMTPUser($User = null)
{
// ¿ÜºÎ SMTP ¼­¹ö¸¦ ÀÌ¿ëÇÒ °æ¿ì ·Î±×ÀÎ »ç¿ëÀÚ¸¦ ¼³Á¤ÇÑ´Ù
return (is_null($User)) ? $this->SMTPAuthUser : $this->SMTPAuthUser = $User;
}

public function setSMTPPasswd($Passwd = null)
{
// ¿ÜºÎ SMTP ¼­¹ö¸¦ ÀÌ¿ëÇÒ °æ¿ì ·Î±×ÀÎ ºñ¹Ð¹øÈ£¸¦ ¼³Á¤ÇÑ´Ù
return (is_null($Passwd)) ? $this->SMTPAuthPasswd : $this->SMTPAuthPasswd = $Passwd;
}

protected function encodingContents($contets)
{
// ¸ÞÀϺ»¹®À» ÀÎÄÚµùÇÏ´Â ¿ªÇÒÀ» ÇÑ´Ù
return chunk_split(base64_encode($contets));
}

protected function makeMailHeader()
{
// º¸³¾ ¸ÞÀÏÀÇ Çì´õ¸¦ ÀÛ¼ºÇÑ´Ù
$header = "";
foreach($this->MailHeaderArray as $Key => $Val)
$header .= $Key . ": " . $Val . "\r\n";

return $header . "\r\n";
}

public function send()
{
// ¸ÞÀÏÀ» Àü¼ÛÇÑ´Ù
$this->AddBasicHeader(); // ¸ÞÀÏÀÇ ±âº»Çì´õ¸¦ »ý¼ºÇÑ´Ù

if($this->UseSMTPServer) return $this->_SMTPSend(); // ¿ÜºÎ SMTP ¼­¹ö¸¦ ÀÌ¿ëÇÒ °æ¿ì
else return $this->_localSend(); // ·ÎÄà SMTP ¸¦ ÀÌ¿ëÇÒ °æ¿ì
}

protected function _SMTPSend()
{
/*
* ¿ÜºÎ SMTP ¼­¹ö¸¦ ÀÌ¿ëÇÒ °æ¿ì ¼ÒÄÏÁ¢¼ÓÀ» ÅëÇؼ­ ¸ÞÀÏÀ» Àü¼ÛÇÑ´Ù
*/
$Succ = 0;

if($this->SMTPServer) {
$this->addHeader('Subject', $this->Subject); // ¸ÞÀÏÇì´õ¿¡ Á¦¸ñÀ» Ãß°¡ÇÑ´Ù
$MailBody = $this->makeMailBody(); // ¸ÞÀϺ»¹®À» »ý¼ºÇÑ´Ù

if(count($this->MailTo) > 0) { // ¹Þ´Â ¸ÞÀÏÀÌ ÀÖÀ¸¸é ´ÙÀ½ ÀÛ¾÷À» ¹Ýº¹ÇÑ´Ù
foreach($this->MailTo as $Email => $Name) {
$mailTo = ($Name) ? $Name . ' <' . $Email . '>' : $Email; // ¹Þ´Â»ç¶÷
$this->addHeader('To', $mailTo); // ¸ÞÀÏÇì´õ¿¡ ¹Þ´Â»ç¶÷À» Ãß°¡ÇÑ´Ù

$Contents = $this->makeMailHeader() . "\r\n" . $MailBody; // ¸ÞÀÏÇì´õ¿Í º»¹®À» ÀÌ¿ëÇØ Àü¼ÛÇÒ ¸ÞÀÏÀ» »ý¼ºÇÑ´Ù

$this->Socket = fsockopen($this->SMTPServer, $this->SMTPPort); // ¼ÒÄÏÁ¢¼ÓÇÑ´Ù
if($this->Socket) {
$this->_sockPut('HELO ' . $this->SMTPServer);
if($this->SMTPAuthUser) { // SMTP ÀÎÁõ
$this->_sockPut('AUTH LOGIN');
$this->_sockPut(base64_encode($this->SMTPAuthUser));
$this->_sockPut(base64_encode($this->SMTPAuthPasswd));
}
$this->_sockPut('MAIL From:' . $this->ReplyTo); // º¸³»´Â ¸ÞÀÏ
$this->_sockPut('RCPT To:' . $Email); // ¹Þ´Â¸ÞÀÏ
$this->_sockPut('DATA');
$this->_sockPut($Contents); // ¸ÞÀϳ»¿ë
$Result = $this->_sockPut('.'); // Àü¼Û¿Ï·á
if(strpos($Result, 'Message accepted for delivery') !== false) $Succ++; // ¼º°ø¿©ºÎÆÇ´Ü
$this->_sockPut('QUIT'); // Á¢¼ÓÁ¾·á
}
}
}
} else $Succ = $this->_localSend(); // ¿ÜºÎ SMTP ¼­¹ö¸¦ ÀÌ¿ëÇÏÁö ¾ÊÀ¸¸é ·ÎÄà SMTP¸¦ ÀÌ¿ëÇؼ­ Àü¼ÛÇÑ´Ù

return $Succ;
}

protected function _sockPut($str)
{
// ¼ÒÄÏÁ¢¼Ó½Ã ³»¿ëÀü¼Û ¹× °á°ú°ª ¹Þ±â
@fputs($this->Socket, $str . "\r\n");
return @fgets($this->Socket, 512);
}

protected function _localSend()
{
$Contents = $this->makeMailBody(); // ¸ÞÀϺ»¹®À» ÀÛ¼ºÇÑ´Ù

$Succ = 0;
foreach($this->MailTo as $Email => $Name) {
$toMail = ($Name) ? $Name . ' <' . $Email . '>' : $Email; // ¹Þ´Â¸ÞÀÏ
$this->addHeader('To', $toMail); // ¸ÞÀÏÇì´õ¿¡ ¹Þ´Â¸ÞÀÏÀ» Ãß°¡ÇÑ´Ù
$header = $this->makeMailHeader(); // Çì´õ¸¦ ÀÛ¼ºÇÑ´Ù

if(mail($Email, $this->Subject, $Contents, $header)) $Succ++; // ¼º°ø¿©ºÎ ÆÇ´Ü
}

return $Succ;
}

protected function makeMailBody()
{
// ¸ÞÀÏÀÇ º»¹®À» ÀÛ¼ºÇÑ´Ù
$mailbody = "";

if(count($this->Attach) > 0) { // ÷ºÎÆÄÀÏÀÌ ÀÖÀ» °æ¿ì º»¹®À» ÀÎÄÚµùÇÏ¿© ¸¸µç´Ù
$mailbody .= "--" . $this->Boundary . "\r\n";
$mailbody .= "Content-Type: text/html; charset=" . $this->Charset . "\r\n";
$mailbody .= "Content-Transfer-Encoding: base64\r\n\r\n";
$mailbody .= $this->encodingContents($this->MailBody) . "\r\n\r\n";
$mailbody .= "\r\n" . $this->MailAttach();
} else $mailbody = $this->MailBody; // ÷ºÎÆÄÀÏÀÌ ¾øÀ¸¸é ±×³É HTML Çü½ÄÀ¸·Î ¸ÞÀϺ»¹®À» »ý¼ºÇÑ´Ù

return $mailbody;
}
}

?>

Àüü´ñ±Û¼ö 17

  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§À½¾Ç»ç¶û ÀÛ¼ºÀÚ 08-08-05 20:38

    ¼Ò½ºº¸±â

  • »ç¿ë¿¹ÀÔ´Ï´Ù.

    $dMail = new Sendmail;

    $dMail->setUseSMTPServer(true);
    $dMail->setSMTPServer('mail.test.com');
    $dMail->setSMTPUser('tester');
    $dMail->setSMTPPasswd('testerpassword');
    $dMail->setFrom('xxx@test.com', 'º¸³»´Â»ç¶÷');
    $dMail->setSubject('Å×½ºÆ® ¸ÞÀÏÀü¼Û');
    $dMail->addAttach($_FILES['upfile']['name'], $_FILES['upfile']['tmp_name']);
    $dMail->setMailBody('¸ÞÀÏÀü¼ÛÀ» Å×½ºÆ®ÇÕ´Ï´Ù', false);
    $dMail->addTo('aaaa@aaa.com', '¹Þ´Â»ç¶÷');

    echo $dMail->send();
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§Æë±Ï¢âÀ̽½¾ð´Ï 08-08-05 23:00

    ¼Ò½ºº¸±â

  • ¼ö°íÇϼ̽À´Ï´Ù.
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§È­ÀÌÆ®·´ 08-08-06 09:23

    ¼Ò½ºº¸±â

  • ¼ö°íÇϼ̽À´Ï´Ù
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§º£¸£»çü 08-08-06 11:07

    ¼Ò½ºº¸±â

  • PHP ¹öÀüµµ ¸í½Ã¸¦ ÇØÁáÀ¸¸é ÁÁ°Ú¾î¿ä. 4.0.x µ¿ÀÛ¾ÈÇÏ°í¿ä.. 5.2.x µ¿ÀÛÇÏ°í¿ä..
    ¾î´À ¹öÀü ºÎÅÍ Áö¿øÇÏÁÒ?
    Ŭ·¡½ºÀÇ ÇÁ·ÎÅØƼµå ¼Ó¼ºÀ̸é...?
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§Æë±Ï¢âÀ̽½¾ð´Ï 08-08-06 11:53

    ¼Ò½ºº¸±â

  • 5.X ºÎÅÍ Áö¿øµÇ´øµ¥¿ä.
    4.X ¾È¸ÔÈ÷´øµ¥¿ä
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§¸í¶ûÆóÀÎ 08-08-06 15:49

    ¼Ò½ºº¸±â

  • °í»ýÇϼ̽À´Ï´Ù.
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§À½¾Ç»ç¶û ÀÛ¼ºÀÚ 08-08-06 20:35

    ¼Ò½ºº¸±â

  • PHP 5 ±âÁØÀ¸·Î ÀÛ¼ºÇÏ¿´½À´Ï´Ù
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§¨ä¶ò°¡¶ò°¡»× 08-08-07 02:49

    ¼Ò½ºº¸±â

  • °£´ÜÇÏ°Ô ÀÛ¼ºÇÏ½Å°Ç ¾Æ´Ñ°Í°°±º¿ä....^^;
    ÁÁÀº ÀÚ·á °¨»çÇÕ´Ï´Ù..........
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§À½¾Ç»ç¶û ÀÛ¼ºÀÚ 08-08-08 10:09

    ¼Ò½ºº¸±â

  • ¾ÆÇÏ! °£´ÜÇÏ°Ô.. ÀÌ ¸»ÀÌ ¿ÀÇØÀÇ ¼ÒÁö°¡ Àֳ׿ä^^
    Á¦°¡ ¹¹.. õÀç¶óµµ µÇ¾î¼­ ½É½ÉÇ®ÀÌ·Î ½±°Ô ¸¸µé¾ú´Ù´Â ¶æÀÌ ¾Æ´Ï±¸¿ä..
    ¸ÞÀÏÀ» Àü¼ÛÇϴµ¥ ±âº»ÀûÀ¸·Î ÇÊ¿äÇÏ´Ù°í »ý°¢µÇ¾îÁö´Â °Íµé¸¸À¸·Î ±¸¼ºÇÏ¿´´Ù°í Çؼ­ °£´ÜÇÏ°Ô ¶ó°í Ç¥ÇöÇÏ¿´½À´Ï´Ù. ºÎ°¡ÀûÀÎ ±â´ÉµéÀº ¸ðµÎ ºüÁ³À¸´Ï±î¿ä...
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§¾Æ¸£Æä³Ä 08-08-19 11:55

    ¼Ò½ºº¸±â

  • ¾Æ¹«¸® Çì´õ Àß ½áµµ ¸¹ÀÌ ÇÊÅ͸µ µÇ±¸ Æû ±úÁö°í ÇÏ´øµ¥¿ä!! ÀÌ°Ç 4.x À̶ó Å×½ºÆ® ¸øÇغ¼°Í °°±¸...
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§À¯È­´Ï 08-10-31 13:41

    ¼Ò½ºº¸±â

  • protected var·Î º¯°æÇÏ°í ÇÔ¼ö ¾Õ¿¡ ÀÖ´Â public »©¸é 4.x ´ëµµ µË´Ï´Ù..
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§¼ÕÀÚ¼­ 08-11-25 19:31

    ¼Ò½ºº¸±â

  • À߸¸µç ÇÔ¼ö °¨»çÇÕ´Ï´Ù.
    ³ëÆĽÉÀÌÁö¸¸,,

     protected function makeMailHeader()
        {
            // º¸³¾ ¸ÞÀÏÀÇ Çì´õ¸¦ ÀÛ¼ºÇÑ´Ù
            $header = "";
            foreach($this->MailHeaderArray as $Key => $Val)
                $header .= $Key . ": " . $Val . "\r\n";
           
            return $header . "\r\n";
        }

    ¿¡¼­

    $header .= $Key . ": " . $Val . "\r\n";
    ¶§¹®¿¡ qmail ¿¡¼­ header °¡ ±úÁ® ƯÈ÷ ¾Æ¿ô·è¿¡¼­ Á¦´ë·Î Àü¼ÛÀÌ ¾ÈµÇ´Â°Í °°³×¿ë
    $header .= $Key . ": " . $Val . "\n";
    ·Î ±³Ã¼ÇØÁÖ¸é ¾Æ¿ô·è¿¡¼­µµ Àß º¸ÀÔ´Ï´ç ^^
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§²É¹è´ÞÀ§Àå°­µµ 09-12-22 18:42

    ¼Ò½ºº¸±â

  • ¿ÏÀü ¶¯Å¥ÀÔ´Ï´Ù.
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§Çã¹÷Áö¿ë¹®½Å 10-01-18 15:39

    ¼Ò½ºº¸±â

  • °í»ýÇϼ̳׿ä. Àß ¾²°Ú½À´Ï´Ù.
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§linux920 10-07-03 15:32

    ¼Ò½ºº¸±â

  • ¿Í¿ì.. Àßµ¹¾Æ°¡³×¿ä ±Ùµ¥ ½ºÆÔÇÔÀ¸·Î °¡²û ºÐ·ùµÇ´Â°Í °°Àºµ¥ ÀÌÀ¯°¡ ¹»±î¿ä?
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§lkwa201 12-02-28 15:38

    ¼Ò½ºº¸±â

  • 4¹öÀüÀ¸·Îµµ ³ª¿ÔÀ¸¸é ÇÏ´Â ¹Ù·¥ ÀÔ´Ï´Ù ¤Ñ.¤Ñ;;;
  • ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§[ºÒÄ£ÀýÇÑ]°³µ¶ÀÌ 16-07-19 16:38

    ¼Ò½ºº¸±â

  • 255¶óÀÎÀÇ $this->addHeader('To', $toMail) À̱¸¹®À» ÁÖ¼®À¸·Î 󸮸¦ ÇØ¾ß ¸ÞÀÏÀÌ µÎ¹ø³ª°¡Áö ¾Ê½À´Ï´Ù.
    ±×¿Ü¿¡´Â Á¤¸» ¿Ïº®ÇÕ´Ï´Ù. °¨»çÇÕ´Ï´Ù.
  • °Ô½Ã¹° 13,195°Ç RSS
¹øÈ£ºÐ·ùÁ¦¸ñ±Û¾´À̳¯Â¥Á¶È¸
13,195 ½ºÅ©¸³Æ® EditContext API Å×½ºÆ® ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§°ø´ë¿©ÀÚ 24-05-22 113
13,194 HTML ui_treemap ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§°ø´ë¿©ÀÚ 24-04-23 199
13,193 HTML scrollbars styling ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§°ø´ë¿©ÀÚ 24-02-29 385
13,192 HTML responsive-font-size . µ¿Àû ÆùÆ® Å©±â ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§°ø´ë¿©ÀÚ 24-02-06 446
13,191 ºê¶ó¿ìÀú console.table() console.* ±â´É ¸¹³×¿ä. [4] ¸µÅ© ÷ºÎÆÄÀÏ ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§¼ÛÈ¿Áø 24-02-05 456
13,190 ½ºÅ©¸³Æ® ¼ýÀÚ¸¸ ÀԷµǰí ÀÚµ¿ ÇÏÀÌÇÂÀ» ÀԷ½ÃÅ°´Â ÀüÈ­¹øÈ£ ½ºÅ©¸³Æ®ÀÔ¡¦ [4] Àα⠱â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§15³â¸¸¿¡°øºÎ 23-11-17 1401
13,189 ½ºÅ©¸³Æ® js scrollIntoView [3] ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§¼ÛÈ¿Áø 23-11-16 563
13,188 HTML ui_valueTooltip [2] ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§°ø´ë¿©ÀÚ 23-11-10 491
13,187 HTML css thumbnail--fallback - src ¼Ó¼ºÀÌ ¾ø°Å³ª, src °¡ ºñ¾ú°Å³ª¡¦ [3] ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§¼ÛÈ¿Áø 23-09-14 619
13,186 ºê¶ó¿ìÀú [±¸±Û ¼­Ä¡ ÄܼÖ] ÄÜÅÙÃ÷ ÆøÀÌ È­¸é Æøº¸´Ù ³ÐÀ½ ÇØ°á ¹æ¹ý [2] ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§¸í¶ûÆóÀÎ 23-08-31 955
13,185 HTML mask-* , -webkit-mask-* , mask-composite , -webkit-mask-comp¡¦ [1] ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§°ø´ë¿©ÀÚ 23-08-16 444
13,184 ±âŸ °íµµ¸ô5Pro ¿¡¼­ ¼Ò½º ¼öÁ¤ÇÏ´Â ¹æ¹ý - ±âÃÊ [7] Àα⠱â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§¸í¶ûÆóÀÎ 23-04-06 2214
13,183 ¼³Ä¡/¼³Á¤ php79 stack 1.3.0 - Rocky Linux 8 Áö¿ø [21] ¸µÅ© Àα⠱â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§ºó°æÀ± 23-02-07 1439
13,182 ±âŸ ¸®¾×Æ®PHP ¸¦ ¼Ò°³ÇÕ´Ï´Ù [4] ¸µÅ© Àα⠱â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§php»ç¶ûÀÌ 23-02-03 2796
13,181 ½ºÅ©¸³Æ® º¹ÀâÇÏ°í ±ÍÂúÀº db where ¹® ¸¸µé±â helper [2] ¸µÅ© Àα⠱â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§php»ç¶ûÀÌ 23-02-03 1301
13,180 ½ºÅ©¸³Æ® º¹ÀâÇÑ Æû µ¥ÀÌÅÍ Ã¼Å© Çϱâ [2] ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§php»ç¶ûÀÌ 23-02-03 930
13,179 ½ºÅ©¸³Æ® datalist ·Î Æû À̸ÞÀÏ ÀÚµ¿¿Ï¼º [3] ¸µÅ© ±â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§¼ÛÈ¿Áø 23-01-31 724
13,178 ºê¶ó¿ìÀú [10¿ø ÆÁ] Chrome ÀÚµ¿¿Ï¼º ºÎºÐ Á¦°Å [1] Àα⠱â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§WikixUnknown 22-11-21 1110
13,177 ±âŸ ¿¢¼¿ÆÄÀÏ ¾Ïȣȭ [4] Àα⠱â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§Áö³ª°¡´ÂÀÚ 22-10-19 1259
13,176 Á¤º¸ ¶ó¶óº§ CRUD + Excel ±â´É Á¤¸® [1] ¸µÅ© Àα⠱â¼ú·¹º§Ä¿¹Â´ÏƼ·¹º§µª½Â 22-08-29 1476
 
1 2 3 4 5 6 7 8 9 10