PHP에서 현재 날짜를 표시하는 방법은 무엇입니까?

wpabud

메일을 통해 고객에게 첨부 파일로 전송되는 PDF를 생성하는 워드 프레스 플러그인 " WooCommerce Gift Coupon "을 사용하고 있습니다. 해당 PDF에 현재 날짜를 표시하고 편집 할 PHP 파일 (mail-template.php)을 이미 찾았습니다.

본문 태그 내의 여러 위치에 다음 코드를 배치하려고 시도했지만 성공하지 못했습니다.

<?php
    $currentDateTime = date('Y-m-d H:i:s');
    echo $currentDateTime;
?>

나는 또한 PHP 태그를 열고 닫지 않고 시도했습니다. 오류가 발생하거나 PDF 문서에있는 그대로 코드가 표시됩니다.

다음은 mail-template.php의 전체 코드입니다.

<?php
/**
 * WooCommerce Gift Coupon Mail Template
 *
 * Sets up the email template
 *
 * @author      WooCommerce Gift Coupon
 * @package     WooCommerce Gift Coupon/Mail Template
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

/**
 * Generate HTML PDF.
 *
 * @param array $data Coupon data.
 * @param bool  $preview Check if is preview.
 * @return string
 */
function woocommerce_gift_coupon_generate_pdf_mail( $data, $preview = false ) {
    $woocommerce_gift_coupon_hide_amount         = get_option( 'woocommerce_gift_coupon_hide_amount' );
    $woocommerce_gift_coupon_show_logo           = get_option( 'woocommerce_gift_coupon_show_logo' );
    $woocommerce_gift_coupon_logo                = get_option( 'woocommerce_gift_coupon_logo' );
    $woocommerce_gift_coupon_info_paragraph_type = get_option( 'woocommerce_gift_coupon_info_paragraph_type' );
    $woocommerce_gift_coupon_info_paragraph      = get_option( 'woocommerce_gift_coupon_info_paragraph' );
    $woocommerce_gift_coupon_info_footer         = get_option( 'woocommerce_gift_coupon_info_footer' );
    $woocommerce_gift_coupon_title_type          = get_option( 'woocommerce_gift_coupon_title_type' );
    $woocommerce_gift_coupon_title_h             = get_option( 'woocommerce_gift_coupon_title_h' );
    $woocommerce_gift_coupon_subject             = get_option( 'woocommerce_gift_coupon_subject' );
    $woocommerce_gift_coupon_bg_color_header     = get_option( 'woocommerce_gift_coupon_bg_color_header' );
    $woocommerce_gift_coupon_bg_color_footer     = get_option( 'woocommerce_gift_coupon_bg_color_footer' );
    $woocommerce_gift_coupon_bg_color_title      = get_option( 'woocommerce_gift_coupon_bg_color_title' );
    $title_coupon                                = $woocommerce_gift_coupon_title_h;
    $description_coupon                          = wpautop( $woocommerce_gift_coupon_info_paragraph );

    // Convert logo to base64.
    if ( !empty( $woocommerce_gift_coupon_logo ) ) {
        $woocommerce_gift_coupon_logo_type = pathinfo( $woocommerce_gift_coupon_logo, PATHINFO_EXTENSION );
        $woocommerce_gift_coupon_logo_data = file_get_contents( $woocommerce_gift_coupon_logo );
        if ( !empty( $woocommerce_gift_coupon_logo_type ) && !empty( $woocommerce_gift_coupon_logo_data ) ) {
            $woocommerce_gift_coupon_logo_base64 = 'data:image/' . $woocommerce_gift_coupon_logo_type . ';base64,' . base64_encode( $woocommerce_gift_coupon_logo_data );
        }
    }

    if ( empty( $preview ) ) {
        // Get title or description coupon.
        if ( $woocommerce_gift_coupon_title_type > 0 || $woocommerce_gift_coupon_info_paragraph_type > 0 ) {
            $data_coupon = get_post( $data['coupon_id'] );
            if ( ! empty( $data_coupon ) ) {
                // Get custom title or product coupon title.
                if ( $woocommerce_gift_coupon_title_type > 0 ) {
                    $title_coupon = $data_coupon->post_title;
                }
                // Get custom description or product coupon description.
                if ( $woocommerce_gift_coupon_info_paragraph_type > 0 ) {
                    $description_coupon = empty( $data_coupon->post_excerpt ) ? wp_trim_words( $data_coupon->post_content, 55, '...' ) : $data_coupon->post_excerpt;
                }
            }
        }
    } else {
        if ( empty( $title_coupon ) ) {
            $title_coupon = 'Lorem ipsum dolor sit amet';
        }
        if ( empty( $description_coupon ) ) {
            $description_coupon = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.';
        }
    }

    $email  = '<!DOCTYPE html>
    <html ' . get_language_attributes() . '>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=' . get_bloginfo( 'charset' ) . '" />
            <title>' . get_bloginfo( 'name', 'display' ) . '</title>';
    $email .= woocommerce_gift_coupon_generate_email_styles();
    $email .= '</head>
        <body bgcolor="#f5f5f5" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
            <div class="page-break-inside: avoid">
                <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable" bgcolor="#f5f5f5">
                    <tr>
                        <td align="center" valign="top">
                            <table bgcolor="#f5f5f5" border="0" cellpadding="0" cellspacing="0" width="595">
                                <tr>
                                    <td align="center" valign="top">
                                        <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#fff">
                                            <tr>
                                                <td align="center" valign="top">
                                                    <table border="0" cellpadding="0" cellspacing="0" width="595">
                                                        <tr>
                                                            <td align="center" valign="top" width="595">
                                                                <table border="0" cellpadding="20" cellspacing="0" width="100%">
                                                                    <tr>
                                                                        <td align="center" valign="top" bgcolor="' . $woocommerce_gift_coupon_bg_color_header . '">';
        if ( $woocommerce_gift_coupon_show_logo > 0 && !empty( $woocommerce_gift_coupon_logo_base64 ) ) {
                                                                            $email .= '<img src="' . $woocommerce_gift_coupon_logo_base64 . '" width="190" />';
        }
                                                                        $email .= '
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="top" bgcolor="' . $woocommerce_gift_coupon_bg_color_title . '">
                                                                            <h1>' . $title_coupon . '</h1>';
        if ( $woocommerce_gift_coupon_hide_amount < 1 ) {
                                                                                $email .= '<h2>' . $data['price'] . '</h2>';
        }
                                                                        $email .= '</td>
                                                                    </tr>           
                                                                    <tr>
                                                                        <td align="center" valign="top" bgcolor="#ccc">
                                                                            <h3>' . esc_html__( 'Code', WOOCOMMERCE_GIFT_COUPON_TEXT_DOMAIN ) . ': ' . $data['code'] . '</h3>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" valign="middle">
                                                                            ' . $description_coupon . '
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            <table bgcolor="' . $woocommerce_gift_coupon_bg_color_footer . '" border="0" cellpadding="0" cellspacing="0" width="595">                        
                                <tr>
                                    <td align="center" valign="top">      
                                        <table border="0" cellpadding="0" cellspacing="0" width="100%">
                                            <tr>
                                                <td align="center" valign="top">
                                                    <table border="0" cellpadding="0" cellspacing="0" width="595">
                                                        <tr>
                                                            <td align="center" valign="top" width="595">
                                                                <table border="0" cellpadding="20" cellspacing="0" width="100%">
                                                                    <tr>
                                                                        <td align="center" valign="top">
                                                                            ' . $woocommerce_gift_coupon_info_footer . '
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                </td>   
                                            </tr>                             
                                        </table>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>
            </div>
        </body>
    </html>';
    return $email;
}

/**
 * Add inline styles to PDF template.
 */
function woocommerce_gift_coupon_generate_email_styles() {
    $styles = '
    <style type="text/css">
        html { 
            background-color:#fff; 
            margin:0; 
            padding:0; 
        }
        body{
            height:100%!important; 
            margin:0; 
            padding:0; 
            width:100%!important;
            font-family:DejaVu Sans, Helvetica;
        }
        table{
            border-collapse:collapse;
        }
        table[id=bodyTable] {
            table-layout: fixed;
            max-width:100%!important;
            width: 100%!important;
            min-width: 100%!important;
            margin:40px 0;color:#7A7A7A;
            font-weight:normal;
        }
        table img, 
        table a img{
            border:0; 
            outline:none;
            text-decoration:none;
            height:auto;
            line-height:100%;
        }
        table a{
            text-decoration:none!important;
            border-bottom:1px solid #ff5a34;
        }
        table a:hover{
            text-decoration:none!important;
            border-bottom:1px solid #1A242E;
        }
        table h1,
        table h2,
        table h3{
            color:#fff;
            font-weight:bold;
            line-height:100%;
            text-align:center;
            letter-spacing:normal;
            font-style: normal;
            margin:0!important;
            padding:0!important;
        }
        table h1 {
            text-transform:uppercase;
            display: block;
            font-family:DejaVu Sans, Helvetica;
            font-size: 56px;
            line-height: 1.385em;
            font-weight: normal;
        }
        table h2 {
            text-transform:uppercase;
            font-size: 86px;
            display: block;
        }
        table h3 {
            color:#252525;
            line-height:100%; 
            font-size:24px;
        }
    </style>';
    return $styles;
}

예를 들어 쿠폰 코드 아래 또는 상단 왼쪽 / 오른쪽 모서리에 현재 날짜를 표시하려면 어떻게해야합니까? 다음은 생성 된 PDF 쿠폰의 예입니다.

귀하의 지원에 미리 감사드립니다!

터미네이터 -Barbapapa

템플릿은 모든 HTML을 $email나중에 PDF로 변환 할 하나의 변수 ( )에 저장합니다 . 나는 이것에 추가하고 있으며 그것을 에코 할 필요가 없습니다. 아래 템플릿이 작동합니다.

<?php
/**
 * WooCommerce Gift Coupon Mail Template
 *
 * Sets up the email template
 *
 * @author      WooCommerce Gift Coupon
 * @package     WooCommerce Gift Coupon/Mail Template
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

/**
 * Generate HTML PDF.
 *
 * @param array $data Coupon data.
 * @param bool  $preview Check if is preview.
 * @return string
 */
function woocommerce_gift_coupon_generate_pdf_mail( $data, $preview = false ) {
    $woocommerce_gift_coupon_hide_amount         = get_option( 'woocommerce_gift_coupon_hide_amount' );
    $woocommerce_gift_coupon_show_logo           = get_option( 'woocommerce_gift_coupon_show_logo' );
    $woocommerce_gift_coupon_logo                = get_option( 'woocommerce_gift_coupon_logo' );
    $woocommerce_gift_coupon_info_paragraph_type = get_option( 'woocommerce_gift_coupon_info_paragraph_type' );
    $woocommerce_gift_coupon_info_paragraph      = get_option( 'woocommerce_gift_coupon_info_paragraph' );
    $woocommerce_gift_coupon_info_footer         = get_option( 'woocommerce_gift_coupon_info_footer' );
    $woocommerce_gift_coupon_title_type          = get_option( 'woocommerce_gift_coupon_title_type' );
    $woocommerce_gift_coupon_title_h             = get_option( 'woocommerce_gift_coupon_title_h' );
    $woocommerce_gift_coupon_subject             = get_option( 'woocommerce_gift_coupon_subject' );
    $woocommerce_gift_coupon_bg_color_header     = get_option( 'woocommerce_gift_coupon_bg_color_header' );
    $woocommerce_gift_coupon_bg_color_footer     = get_option( 'woocommerce_gift_coupon_bg_color_footer' );
    $woocommerce_gift_coupon_bg_color_title      = get_option( 'woocommerce_gift_coupon_bg_color_title' );
    $title_coupon                                = $woocommerce_gift_coupon_title_h;
    $description_coupon                          = wpautop( $woocommerce_gift_coupon_info_paragraph );

    // Convert logo to base64.
    if ( !empty( $woocommerce_gift_coupon_logo ) ) {
        $woocommerce_gift_coupon_logo_type = pathinfo( $woocommerce_gift_coupon_logo, PATHINFO_EXTENSION );
        $woocommerce_gift_coupon_logo_data = file_get_contents( $woocommerce_gift_coupon_logo );
        if ( !empty( $woocommerce_gift_coupon_logo_type ) && !empty( $woocommerce_gift_coupon_logo_data ) ) {
            $woocommerce_gift_coupon_logo_base64 = 'data:image/' . $woocommerce_gift_coupon_logo_type . ';base64,' . base64_encode( $woocommerce_gift_coupon_logo_data );
        }
    }

    if ( empty( $preview ) ) {
        // Get title or description coupon.
        if ( $woocommerce_gift_coupon_title_type > 0 || $woocommerce_gift_coupon_info_paragraph_type > 0 ) {
            $data_coupon = get_post( $data['coupon_id'] );
            if ( ! empty( $data_coupon ) ) {
                // Get custom title or product coupon title.
                if ( $woocommerce_gift_coupon_title_type > 0 ) {
                    $title_coupon = $data_coupon->post_title;
                }
                // Get custom description or product coupon description.
                if ( $woocommerce_gift_coupon_info_paragraph_type > 0 ) {
                    $description_coupon = empty( $data_coupon->post_excerpt ) ? wp_trim_words( $data_coupon->post_content, 55, '...' ) : $data_coupon->post_excerpt;
                }
            }
        }
    } else {
        if ( empty( $title_coupon ) ) {
            $title_coupon = 'Lorem ipsum dolor sit amet';
        }
        if ( empty( $description_coupon ) ) {
            $description_coupon = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.';
        }
    }

    $email  = '<!DOCTYPE html>
    <html ' . get_language_attributes() . '>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=' . get_bloginfo( 'charset' ) . '" />
            <title>' . get_bloginfo( 'name', 'display' ) . '</title>';
    $email .= woocommerce_gift_coupon_generate_email_styles();
    $email .= '</head>
        <body bgcolor="#f5f5f5" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
            <div class="page-break-inside: avoid">
                <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable" bgcolor="#f5f5f5">
                    <tr>
                        <td align="center" valign="top">
                            <table bgcolor="#f5f5f5" border="0" cellpadding="0" cellspacing="0" width="595">
                                <tr>
                                    <td align="center" valign="top">
                                        <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#fff">
                                            <tr>
                                                <td align="center" valign="top">
                                                    <table border="0" cellpadding="0" cellspacing="0" width="595">
                                                        <tr>
                                                            <td align="center" valign="top" width="595">
                                                                <table border="0" cellpadding="20" cellspacing="0" width="100%">
                                                                    <tr>
                                                                        <td align="center" valign="top" bgcolor="' . $woocommerce_gift_coupon_bg_color_header . '">';
        if ( $woocommerce_gift_coupon_show_logo > 0 && !empty( $woocommerce_gift_coupon_logo_base64 ) ) {
                                                                            $email .= '<img src="' . $woocommerce_gift_coupon_logo_base64 . '" width="190" />';
        }
                                                                        $email .= '
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="top" bgcolor="' . $woocommerce_gift_coupon_bg_color_title . '">
                                                                            <h1>' . $title_coupon . '</h1>';
        if ( $woocommerce_gift_coupon_hide_amount < 1 ) {
                                                                                $email .= '<h2>' . $data['price'] . '</h2>';
        }
                                                                        $email .= '</td>
                                                                    </tr>           
                                                                    <tr>
                                                                        <td align="center" valign="top" bgcolor="#ccc">
                                                                            <h3>' . esc_html__( 'Code', WOOCOMMERCE_GIFT_COUPON_TEXT_DOMAIN ) . ': ' . $data['code'] . '</h3>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="center" valign="top" bgcolor="#ccc">
                                                                            <h3>' . __( 'Current date', WOOCOMMERCE_GIFT_COUPON_TEXT_DOMAIN ) . ': ' . date('Y-m-d H:i:s') . '</h3>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" valign="middle">
                                                                            ' . $description_coupon . '
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            <table bgcolor="' . $woocommerce_gift_coupon_bg_color_footer . '" border="0" cellpadding="0" cellspacing="0" width="595">                        
                                <tr>
                                    <td align="center" valign="top">      
                                        <table border="0" cellpadding="0" cellspacing="0" width="100%">
                                            <tr>
                                                <td align="center" valign="top">
                                                    <table border="0" cellpadding="0" cellspacing="0" width="595">
                                                        <tr>
                                                            <td align="center" valign="top" width="595">
                                                                <table border="0" cellpadding="20" cellspacing="0" width="100%">
                                                                    <tr>
                                                                        <td align="center" valign="top">
                                                                            ' . $woocommerce_gift_coupon_info_footer . '
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                </td>   
                                            </tr>                             
                                        </table>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>
            </div>
        </body>
    </html>';
    return $email;
}

/**
 * Add inline styles to PDF template.
 */
function woocommerce_gift_coupon_generate_email_styles() {
    $styles = '
    <style type="text/css">
        html { 
            background-color:#fff; 
            margin:0; 
            padding:0; 
        }
        body{
            height:100%!important; 
            margin:0; 
            padding:0; 
            width:100%!important;
            font-family:DejaVu Sans, Helvetica;
        }
        table{
            border-collapse:collapse;
        }
        table[id=bodyTable] {
            table-layout: fixed;
            max-width:100%!important;
            width: 100%!important;
            min-width: 100%!important;
            margin:40px 0;color:#7A7A7A;
            font-weight:normal;
        }
        table img, 
        table a img{
            border:0; 
            outline:none;
            text-decoration:none;
            height:auto;
            line-height:100%;
        }
        table a{
            text-decoration:none!important;
            border-bottom:1px solid #ff5a34;
        }
        table a:hover{
            text-decoration:none!important;
            border-bottom:1px solid #1A242E;
        }
        table h1,
        table h2,
        table h3{
            color:#fff;
            font-weight:bold;
            line-height:100%;
            text-align:center;
            letter-spacing:normal;
            font-style: normal;
            margin:0!important;
            padding:0!important;
        }
        table h1 {
            text-transform:uppercase;
            display: block;
            font-family:DejaVu Sans, Helvetica;
            font-size: 56px;
            line-height: 1.385em;
            font-weight: normal;
        }
        table h2 {
            text-transform:uppercase;
            font-size: 86px;
            display: block;
        }
        table h3 {
            color:#252525;
            line-height:100%; 
            font-size:24px;
        }
    </style>';
    return $styles;
}

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

HTML에서 현재 날짜를 표시하는 방법은 무엇입니까?

분류에서Dev

PHP에서 현재 달과 다음 달 날짜를 표시하는 방법은 무엇입니까?

분류에서Dev

CLI에서 현재 Windows OS 날짜, 시간 및 시간대를 표시하는 방법은 무엇입니까?

분류에서Dev

JavaScript에서 현재 날짜를 연장하는 방법은 무엇입니까?

분류에서Dev

현재 날짜를 쿼리에 전달하는 방법은 무엇입니까?

분류에서Dev

Mac OSX에서 파일 생성 날짜를 현재 날짜로 설정하는 방법은 무엇입니까?

분류에서Dev

odoo datepicker에서 현재 날짜 이후의 날짜를 비활성화하는 방법은 무엇입니까?

분류에서Dev

Tibco BW에서 두 날짜를 현재 날짜와 비교하는 방법은 무엇입니까?

분류에서Dev

SQL에서 현재 날짜에서 날짜를 빼는 방법은 무엇입니까?

분류에서Dev

배송일 SQL 쿼리에서 오늘 날짜 (현재 날짜)를 빼는 방법은 무엇입니까?

분류에서Dev

iOS에서 현재 위도를 표시하는 방법은 무엇입니까?

분류에서Dev

현재 날짜가 1 월인 현재 날짜에서 한 달 전에 날짜를 가져 오는 방법은 무엇입니까?

분류에서Dev

Jquery UI Calendar-현재 날짜 이후의 날짜를 강조 표시하는 방법은 무엇입니까?

분류에서Dev

PHP에서 날짜를 표시하는 방법은 무엇입니까?

분류에서Dev

XSL 1.0을 사용하여 반복되는 컨텍스트에서 현재 날짜를 표시하는 방법은 무엇입니까?

분류에서Dev

MVC에서 현재 날짜를 datepicker로 설정하는 방법은 무엇입니까?

분류에서Dev

OpenERP에서 yaml로 현재 날짜를 정의하는 방법은 무엇입니까?

분류에서Dev

MySQL에서 현재 날짜를 날짜 범위 또는 불연속 날짜 값과 비교하는 방법은 무엇입니까?

분류에서Dev

curl 명령에 현재 날짜를 삽입하는 방법은 무엇입니까?

분류에서Dev

iOS의 서버에서 현재 날짜를 얻는 방법은 무엇입니까?

분류에서Dev

자바에서 ISO 날짜 형식으로 현재 시간과 날짜를 인쇄하는 방법은 무엇입니까?

분류에서Dev

수동 useradd 스크립트에 현재 날짜 또는 현재 시간 스탬프를 추가하는 방법은 무엇입니까?

분류에서Dev

Pandas에서 정규 표현식을 사용하여 날짜를 추출하는 방법은 무엇입니까?

분류에서Dev

현재 및 향후 날짜를 확인하는 방법은 무엇입니까?

분류에서Dev

Kendo Datepicker에서 이전에 선택한 날짜를 현재 날짜로 변경하는 방법은 무엇입니까?

분류에서Dev

현재 날짜 / 시간이 일정 내에 있는지 확인하는 방법은 무엇입니까?

분류에서Dev

QComboBox에서 현재 항목 텍스트를 표시하는 방법은 무엇입니까?

분류에서Dev

Android AVD에서 현재 위치를 표시하는 방법은 무엇입니까?

분류에서Dev

TFLearn에서 재현율과 정밀도를 표시하는 방법은 무엇입니까?

Related 관련 기사

  1. 1

    HTML에서 현재 날짜를 표시하는 방법은 무엇입니까?

  2. 2

    PHP에서 현재 달과 다음 달 날짜를 표시하는 방법은 무엇입니까?

  3. 3

    CLI에서 현재 Windows OS 날짜, 시간 및 시간대를 표시하는 방법은 무엇입니까?

  4. 4

    JavaScript에서 현재 날짜를 연장하는 방법은 무엇입니까?

  5. 5

    현재 날짜를 쿼리에 전달하는 방법은 무엇입니까?

  6. 6

    Mac OSX에서 파일 생성 날짜를 현재 날짜로 설정하는 방법은 무엇입니까?

  7. 7

    odoo datepicker에서 현재 날짜 이후의 날짜를 비활성화하는 방법은 무엇입니까?

  8. 8

    Tibco BW에서 두 날짜를 현재 날짜와 비교하는 방법은 무엇입니까?

  9. 9

    SQL에서 현재 날짜에서 날짜를 빼는 방법은 무엇입니까?

  10. 10

    배송일 SQL 쿼리에서 오늘 날짜 (현재 날짜)를 빼는 방법은 무엇입니까?

  11. 11

    iOS에서 현재 위도를 표시하는 방법은 무엇입니까?

  12. 12

    현재 날짜가 1 월인 현재 날짜에서 한 달 전에 날짜를 가져 오는 방법은 무엇입니까?

  13. 13

    Jquery UI Calendar-현재 날짜 이후의 날짜를 강조 표시하는 방법은 무엇입니까?

  14. 14

    PHP에서 날짜를 표시하는 방법은 무엇입니까?

  15. 15

    XSL 1.0을 사용하여 반복되는 컨텍스트에서 현재 날짜를 표시하는 방법은 무엇입니까?

  16. 16

    MVC에서 현재 날짜를 datepicker로 설정하는 방법은 무엇입니까?

  17. 17

    OpenERP에서 yaml로 현재 날짜를 정의하는 방법은 무엇입니까?

  18. 18

    MySQL에서 현재 날짜를 날짜 범위 또는 불연속 날짜 값과 비교하는 방법은 무엇입니까?

  19. 19

    curl 명령에 현재 날짜를 삽입하는 방법은 무엇입니까?

  20. 20

    iOS의 서버에서 현재 날짜를 얻는 방법은 무엇입니까?

  21. 21

    자바에서 ISO 날짜 형식으로 현재 시간과 날짜를 인쇄하는 방법은 무엇입니까?

  22. 22

    수동 useradd 스크립트에 현재 날짜 또는 현재 시간 스탬프를 추가하는 방법은 무엇입니까?

  23. 23

    Pandas에서 정규 표현식을 사용하여 날짜를 추출하는 방법은 무엇입니까?

  24. 24

    현재 및 향후 날짜를 확인하는 방법은 무엇입니까?

  25. 25

    Kendo Datepicker에서 이전에 선택한 날짜를 현재 날짜로 변경하는 방법은 무엇입니까?

  26. 26

    현재 날짜 / 시간이 일정 내에 있는지 확인하는 방법은 무엇입니까?

  27. 27

    QComboBox에서 현재 항목 텍스트를 표시하는 방법은 무엇입니까?

  28. 28

    Android AVD에서 현재 위치를 표시하는 방법은 무엇입니까?

  29. 29

    TFLearn에서 재현율과 정밀도를 표시하는 방법은 무엇입니까?

뜨겁다태그

보관