• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP xtc_image函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中xtc_image函数的典型用法代码示例。如果您正苦于以下问题:PHP xtc_image函数的具体用法?PHP xtc_image怎么用?PHP xtc_image使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了xtc_image函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: quote

 function quote($method = '')
 {
     global $order, $shipping_weight, $shipping_num_boxes, $xtPrice;
     if (MODULE_SHIPPING_TABLE_MODE == 'price') {
         $order_total = $xtPrice->xtcRemoveCurr($_SESSION['cart']->show_total());
     } else {
         $order_total = $shipping_weight;
     }
     $table_cost = preg_split("/[:,]/", MODULE_SHIPPING_TABLE_COST);
     // Hetfield - 2009-08-18 - replaced deprecated function split with preg_split to be ready for PHP >= 5.3
     $size = sizeof($table_cost);
     for ($i = 0, $n = $size; $i < $n; $i += 2) {
         if ($order_total <= $table_cost[$i]) {
             $shipping = $table_cost[$i + 1];
             break;
         }
     }
     if (MODULE_SHIPPING_TABLE_MODE == 'weight') {
         $shipping = $shipping * $shipping_num_boxes;
     }
     $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_TABLE_TEXT_TITLE, 'methods' => array(array('id' => $this->code, 'title' => MODULE_SHIPPING_TABLE_TEXT_WAY, 'cost' => $shipping + MODULE_SHIPPING_TABLE_HANDLING)));
     if ($this->tax_class > 0) {
         $this->quotes['tax'] = xtc_get_tax_rate($this->tax_class, $order->delivery['country']['id'], $order->delivery['zone_id']);
     }
     if (xtc_not_null($this->icon)) {
         $this->quotes['icon'] = xtc_image($this->icon, $this->title);
     }
     return $this->quotes;
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:29,代码来源:table.php


示例2: _setCode

 function _setCode($code = 'CC', $payment_method = 'ACC')
 {
     $this->module = $code;
     $this->method = $payment_method;
     $this->code = 'moneybookers_' . strtolower($code);
     if (defined('MODULE_PAYMENT_MONEYBOOKERS_' . strtoupper($code) . '_TEXT_TITLE')) {
         $this->title = constant('MODULE_PAYMENT_MONEYBOOKERS_' . strtoupper($code) . '_TEXT_TITLE');
         $this->description = constant('MODULE_PAYMENT_MONEYBOOKERS_' . strtoupper($code) . '_TEXT_DESCRIPTION');
         $this->info = constant('MODULE_PAYMENT_MONEYBOOKERS_' . strtoupper($code) . '_TEXT_INFO');
     }
     if (defined('MODULE_PAYMENT_MONEYBOOKERS_' . strtoupper($code) . '_STATUS')) {
         $this->sort_order = constant('MODULE_PAYMENT_MONEYBOOKERS_' . strtoupper($code) . '_SORT_ORDER');
         $this->enabled = constant('MODULE_PAYMENT_MONEYBOOKERS_' . strtoupper($code) . '_STATUS') == 'true' ? true : false;
         $this->tmpStatus = constant('_PAYMENT_MONEYBOOKERS_TMP_STATUS_ID');
     }
     if (defined('_VALID_XTC')) {
         $icons = explode(',', $this->images);
         $accepted = '';
         foreach ($icons as $key => $val) {
             $accepted .= xtc_image('../images/icons/moneybookers/' . $val) . ' ';
         }
         if ($this->allowed != '') {
             $this->title .= ' (' . $this->allowed . ')';
         }
         $this->title .= '<br />' . $accepted;
     }
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:27,代码来源:class.moneybookers.php


示例3: xtc_display_banner

function xtc_display_banner($action, $identifier)
{
    if ($action == 'dynamic') {
        $banners_query = xtc_db_query("select count(*) as count from " . TABLE_BANNERS . " where status = '1' and banners_group = '" . xtc_db_input($identifier) . "'");
        $banners = xtc_db_fetch_array($banners_query);
        if ($banners['count'] > 0) {
            $banner = xtc_random_select("select banners_id, banners_title, banners_image, banners_html_text from " . TABLE_BANNERS . " where status = '1' and banners_group = '" . xtc_db_input($identifier) . "'");
        } else {
            return '<strong>XTC ERROR! (xtc_display_banner(' . $action . ', ' . $identifier . ') -> No banners with group \'' . $identifier . '\' found!</strong>';
        }
    } elseif ($action == 'static') {
        if (is_array($identifier)) {
            $banner = $identifier;
        } else {
            $banner_query = xtc_db_query("select banners_id, banners_title, banners_image, banners_html_text from " . TABLE_BANNERS . " where status = '1' and banners_id = '" . xtc_db_input($identifier) . "'");
            if (xtc_db_num_rows($banner_query)) {
                $banner = xtc_db_fetch_array($banner_query);
            } else {
                return '<strong>XTC ERROR! (xtc_display_banner(' . $action . ', ' . $identifier . ') -> Banner with ID \'' . $identifier . '\' not found, or status inactive</strong>';
            }
        }
    } else {
        return '<strong>XTC ERROR! (xtc_display_banner(' . $action . ', ' . $identifier . ') -> Unknown $action parameter value - it must be either \'dynamic\' or \'static\'</strong>';
    }
    if (xtc_not_null($banner['banners_html_text'])) {
        $banner_string = $banner['banners_html_text'];
    } else {
        $banner_string = '<a href="' . xtc_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner['banners_id']) . '" onclick="window.open(this.href); return false;">' . xtc_image(DIR_WS_IMAGES . 'banner/' . $banner['banners_image'], $banner['banners_title']) . '</a>';
    }
    xtc_update_banner_display_count($banner['banners_id']);
    return $banner_string;
}
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:32,代码来源:xtc_display_banner.inc.php


示例4: selection

 function selection()
 {
     if (MODULE_PAYMENT_MASTERPAYMENT_CREDIT_CARD_ICON == 'true') {
         $content = array();
         $content = array_merge($content, array(array('title' => ' ', 'field' => xtc_image(DIR_WS_ICONS . 'masterpayment_credit_card.gif'))));
     }
     return array('id' => $this->code, 'module' => $this->title_checkout, 'description' => $this->info, 'fields' => $content);
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:8,代码来源:masterpayment_credit_card.php


示例5: selection

 function selection()
 {
     if (MODULE_PAYMENT_MASTERPAYMENT_RECHNUNGSKAUF_ICON == 'true') {
         $content = array();
         $content = array_merge($content, array(array('title' => ' ', 'field' => xtc_image(DIR_WS_ICONS . 'masterpayment_rechnungskauf.gif'))));
     }
     return array('id' => $this->code, 'module' => $this->title_checkout, 'description' => $this->info, 'fields' => $content);
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:8,代码来源:masterpayment_rechnungskauf.php


示例6: selection

 function selection()
 {
     if (MODULE_PAYMENT_MASTERPAYMENT_ELV_ICON == 'true') {
         $content = array();
         $content = array_merge($content, array(array('title' => ' ', 'field' => xtc_image(DIR_WS_ICONS . 'masterpayment_elv.gif'))));
     }
     return array('id' => $this->code, 'module' => $this->title_checkout, 'description' => MODULE_PAYMENT_MASTERPAYMENT_ELV_TEXT_INFO, 'fields' => $content);
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:8,代码来源:masterpayment_elv.php


示例7: selection

 function selection()
 {
     if (MODULE_PAYMENT_MASTERPAYMENT_SOFORTBANKING_ICON == 'true') {
         $content = array();
         $content = array_merge($content, array(array('title' => ' ', 'field' => xtc_image(DIR_WS_ICONS . 'masterpayment_sofortbanking.gif'))));
     }
     return array('id' => $this->code, 'module' => $this->title_checkout, 'description' => $this->info, 'fields' => $content);
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:8,代码来源:masterpayment_sofortbanking.php


示例8: quote

 function quote($method = '')
 {
     $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_SELFPICKUP_TEXT_TITLE);
     $this->quotes['methods'] = array(array('id' => $this->code, 'title' => MODULE_SHIPPING_SELFPICKUP_TEXT_WAY, 'cost' => 0));
     if (xtc_not_null($this->icon)) {
         $this->quotes['icon'] = xtc_image($this->icon, $this->title);
     }
     return $this->quotes;
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:9,代码来源:selfpickup.php


示例9: setImageText

 function setImageText($image, $text)
 {
     $lng = HelperFunctions::getShortCode($_SESSION['language']);
     $image = 'https://images.sofort.com/' . $lng . '/sl/' . $image;
     $image = xtc_image($image, MODULE_PAYMENT_SOFORT_SL_TEXT_DESCRIPTION_CHECKOUT_PAYMENT_IMAGEALT);
     $title = MODULE_PAYMENT_SOFORT_SL_TEXT_DESCRIPTION_CHECKOUT_PAYMENT_IMAGE;
     $title = str_replace('{{image}}', $image, $title);
     $title = str_replace('{{text}}', $text, $title);
     return $title;
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:10,代码来源:sofort_sofortlastschrift.php


示例10: xtc_output_warning

function xtc_output_warning($warning)
{
    // BOF - Dokuman - 2009-05-27 - display errors only to admins in DIV-Element
    //  new errorBox(array(array('text' => '<table style="width: 100%;"><tr><td style="vertical-align: center; padding-left: 5px;">' . xtc_image(DIR_WS_ICONS . 'output_warning.gif', ICON_WARNING) . ' </td><td style="vertical-align: center; text-align: center;"> ' . $warning . '</td></tr></table>')));
    $result = '';
    if (isset($_SESSION['customers_status']['customers_status_id']) && $_SESSION['customers_status']['customers_status_id'] == '0') {
        $result = '<div class="errormessage alert alert-warning">' . xtc_image(DIR_WS_ICONS . 'output_warning.gif', ICON_WARNING) . $warning . '</div>';
    }
    echo $result;
    // EOF - Dokuman - 2009-05-27 - display errors only to admins in DIV-Element
}
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:11,代码来源:xtc_output_warning.inc.php


示例11: selection

 function selection()
 {
     $content = array();
     $accepted = '';
     $icons = explode(',', $this->images);
     foreach ($icons as $key => $val) {
         $accepted .= xtc_image(DIR_WS_ICONS . 'moneybookers/' . $val) . ' ';
     }
     $content = array_merge($content, array(array('title' => ' ', 'field' => $accepted)));
     return array('id' => $this->code, 'module' => $this->title, 'fields' => $content, 'description' => $this->info);
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:11,代码来源:moneybookers_elv.php


示例12: quote

 function quote($method = '')
 {
     global $order, $total_count;
     $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_ITEM_TEXT_TITLE, 'methods' => array(array('id' => $this->code, 'title' => MODULE_SHIPPING_ITEM_TEXT_WAY, 'cost' => MODULE_SHIPPING_ITEM_COST * $total_count + MODULE_SHIPPING_ITEM_HANDLING)));
     if ($this->tax_class > 0) {
         $this->quotes['tax'] = xtc_get_tax_rate($this->tax_class, $order->delivery['country']['id'], $order->delivery['zone_id']);
     }
     if (xtc_not_null($this->icon)) {
         $this->quotes['icon'] = xtc_image($this->icon, $this->title);
     }
     return $this->quotes;
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:12,代码来源:item.php


示例13: add

 function add($class, $message, $type = 'error')
 {
     if ($type == 'error') {
         $this->messages[] = array('params' => 'class="messageStackError alert alert-block alert-error"', 'class' => $class, 'text' => xtc_image(DIR_WS_ICONS . 'error.gif', ICON_ERROR) . '&nbsp;' . $message);
     } elseif ($type == 'warning') {
         $this->messages[] = array('params' => 'class="messageStackWarning alert alert-block alert-warning"', 'class' => $class, 'text' => xtc_image(DIR_WS_ICONS . 'warning.gif', ICON_WARNING) . '&nbsp;' . $message);
     } elseif ($type == 'success') {
         $this->messages[] = array('params' => 'class="messageStackSuccess alert alert-block alert-success"', 'class' => $class, 'text' => xtc_image(DIR_WS_ICONS . 'success.gif', ICON_SUCCESS) . '&nbsp;' . $message);
     } else {
         $this->messages[] = array('params' => 'class="messageStackError alert alert-block alert-error"', 'class' => $class, 'text' => $message);
     }
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:12,代码来源:message_stack.php


示例14: getReviewRatingStars

function getReviewRatingStars($pID)
{
    //Bewertungswert auslesen und Schnitt berechnen
    $rating_query = xtDBquery("SELECT AVG(r.reviews_rating) as avgrating\r\n                                  FROM " . TABLE_REVIEWS . " r\r\n                                  WHERE r.products_id = '" . $pID . "'");
    $rating = xtc_db_fetch_array($rating_query, true);
    //Sterne-Symbol passend w�hlen
    if ($rating['avgrating'] == "") {
        $bewertung = xtc_image('templates/' . CURRENT_TEMPLATE . '/img/stars_0.gif', '0', '', '', 'class="rating"');
    } else {
        $bewertung = xtc_image('templates/' . CURRENT_TEMPLATE . '/img/stars_' . round($rating['avgrating']) . '.gif', round($rating['avgrating']), '', '', 'class="rating"');
    }
    //Sternbild zur�ck liefern
    return $bewertung;
}
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:14,代码来源:ratingStars.inc.php


示例15: quote

 function quote($method = '')
 {
     global $xtPrice;
     if ($xtPrice->xtcRemoveCurr($_SESSION['cart']->show_total()) < MODULE_SHIPPING_FREEAMOUNT_AMOUNT && MODULE_SHIPPING_FREEAMOUNT_DISPLAY == 'False') {
         return;
     }
     $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_FREEAMOUNT_TEXT_TITLE);
     if ($xtPrice->xtcRemoveCurr($_SESSION['cart']->show_total()) < MODULE_SHIPPING_FREEAMOUNT_AMOUNT) {
         $this->quotes['error'] = sprintf(MODULE_SHIPPING_FREEAMOUNT_TEXT_WAY, $xtPrice->xtcFormat(MODULE_SHIPPING_FREEAMOUNT_AMOUNT, true, 0, true));
     } else {
         $this->quotes['methods'] = array(array('id' => $this->code, 'title' => sprintf(MODULE_SHIPPING_FREEAMOUNT_TEXT_WAY, $xtPrice->xtcFormat(MODULE_SHIPPING_FREEAMOUNT_AMOUNT, true, 0, true)), 'cost' => 0));
     }
     if (xtc_not_null($this->icon)) {
         $this->quotes['icon'] = xtc_image($this->icon, $this->title);
     }
     return $this->quotes;
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:17,代码来源:freeamount.php


示例16: barzahlen

 /**
  * Constructor class, sets the settings.
  */
 function barzahlen()
 {
     $this->code = 'barzahlen';
     $this->version = '1.2.3';
     $this->title = MODULE_PAYMENT_BARZAHLEN_TEXT_TITLE;
     $this->description = '<div align="center">' . xtc_image('https://cdn.barzahlen.de/images/barzahlen_logo.png', MODULE_PAYMENT_BARZAHLEN_TEXT_TITLE) . '</div><br>' . MODULE_PAYMENT_BARZAHLEN_TEXT_DESCRIPTION;
     $this->sort_order = MODULE_PAYMENT_BARZAHLEN_SORT_ORDER;
     $this->enabled = MODULE_PAYMENT_BARZAHLEN_STATUS == 'True' ? true : false;
     $this->defaultCurrency = 'EUR';
     $this->tmpOrders = true;
     $this->tmpStatus = MODULE_PAYMENT_BARZAHLEN_NEW_STATUS;
     $this->form_action_url = '';
     $this->logFile = DIR_FS_CATALOG . 'logfiles/barzahlen.log';
     $this->currencies = array('EUR');
     $this->countries = array('DE');
     if ($this->check() && $this->checkLastAutoCancel()) {
         $this->autoCancel();
     }
 }
开发者ID:KaiBerkemeyer,项目名称:Barzahlen-Gambio-1,代码行数:22,代码来源:barzahlen.php


示例17: quote

 function quote()
 {
     global $order, $shipping_weight;
     $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_CHRONOPOST_TEXT_TITLE, 'methods' => array());
     if (xtc_not_null($this->icon)) {
         $this->quotes['icon'] = xtc_image($this->icon, $this->title);
     }
     if ($this->tax_class > 0) {
         $this->quotes['tax'] = xtc_get_tax_rate($this->tax_class, $order->delivery['country']['id'], $order->delivery['zone_id']);
     }
     $dest_country = $order->delivery['country']['iso_code_2'];
     $dest_zone = 0;
     for ($i = 1; $i <= $this->num_chronopost; $i++) {
         $countries_table = constant('MODULE_SHIPPING_CHRONOPOST_COUNTRIES_' . $i);
         $country = explode(",", $countries_table);
         // Hetfield - 2009-08-18 - replaced deprecated function split with explode to be ready for PHP >= 5.3
         if (in_array($dest_country, $country)) {
             $dest_zone = $i;
             break;
         }
     }
     if ($dest_zone == 0) {
         $this->quotes['error'] = MODULE_SHIPPING_CHRONOPOST_INVALID_ZONE;
         return $this->quotes;
     }
     $table = preg_split("/[:,]/", constant('MODULE_SHIPPING_CHRONOPOST_COST_' . $dest_zone));
     // Hetfield - 2009-08-18 - replaced deprecated function split with preg_split to be ready for PHP >= 5.3
     $cost = -1;
     for ($i = 0, $n = sizeof($table); $i < $n; $i += 2) {
         if ($shipping_weight <= $table[$i]) {
             $cost = $table[$i + 1] + MODULE_SHIPPING_CHRONOPOST_HANDLING + SHIPPING_HANDLING;
             break;
         }
     }
     if ($cost == -1) {
         $this->quotes['error'] = MODULE_SHIPPING_CHRONOPOST_UNDEFINED_RATE;
         return $this->quotes;
     }
     $this->quotes['methods'][] = array('id' => $this->code, 'title' => MODULE_SHIPPING_CHRONOPOST_TEXT_WAY . ' ' . $order->delivery['country']['title'], 'cost' => $cost + MODULE_SHIPPING_CHRONOPOST_HANDLING + SHIPPING_HANDLING);
     return $this->quotes;
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:41,代码来源:chronopost.php


示例18: quote

 function quote($method = '')
 {
     global $order, $shipping_weight, $shipping_num_boxes;
     $gew = 0;
     foreach ($order->products as $prod) {
         $gew += (double) $prod['weight'] * $prod['qty'];
     }
     if ($order->delivery['country']['iso_code_2'] == 'DE') {
         $preise = preg_split("/;/", MODULE_SHIPPING_HERMES_NATIONAL);
     } else {
         $preise = preg_split("/;/", MODULE_SHIPPING_HERMES_INTERNATIONAL);
     }
     // Hetfield - 2009-11-19 - replaced deprecated function split with preg_split to be ready for PHP >= 5.3
     $gewichte = preg_split("/;/", MODULE_SHIPPING_HERMES_GEWICHT);
     // Hetfield - 2009-11-19 - replaced deprecated function split with preg_split to be ready for PHP >= 5.3
     $price_id = 0;
     foreach ($gewichte as $g) {
         if ($gew <= $g) {
             break;
         }
         $price_id++;
     }
     if ($order->delivery['country']['iso_code_2'] == 'DE') {
         $stitle = MODULE_SHIPPING_HERMES_TEXT_WAY_DE . $shipping_num_boxes * $shipping_weight . ' ' . MODULE_SHIPPING_HERMES_TEXT_UNITS;
     } else {
         $stitle = MODULE_SHIPPING_HERMES_TEXT_WAY_EU . $shipping_num_boxes * $shipping_weight . ' ' . MODULE_SHIPPING_HERMES_TEXT_UNITS;
     }
     $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_HERMES_TEXT_TITLE, 'methods' => array(array('id' => $this->code, 'title' => $stitle, 'cost' => $preise[$price_id])));
     if ($this->tax_class > 0) {
         $this->quotes['tax'] = xtc_get_tax_rate($this->tax_class, $order->delivery['country']['id'], $order->delivery['zone_id']);
     }
     if (xtc_not_null($this->icon)) {
         $this->quotes['icon'] = xtc_image($this->icon, $this->title);
     }
     return $this->quotes;
 }
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:36,代码来源:hermes.php


示例19: xtc_draw_separator

function xtc_draw_separator($image = 'pixel_black.gif', $width = '100%', $height = '1')
{
    return xtc_image(DIR_WS_IMAGES . $image, '', $width, $height);
}
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:4,代码来源:xtc_draw_separator.inc.php


示例20: xtc_date_short

        ?>
                  <td class="dataTableContent hidden-xs hidden-sm" align="right"><?php 
        echo $currencies->format($gv_amount);
        ?>
&nbsp;</td>
                  <td class="dataTableContent hidden-xs hidden-sm" align="right"><?php 
        echo xtc_date_short($customers['date_account_created']);
        ?>
&nbsp;</td>
                  <td class="dataTableContent" align="right">
                      <span class='hidden-sm hidden-xs'>
                      <?php 
        if (isset($cInfo) && is_object($cInfo) && $customers['customers_id'] == $cInfo->customers_id) {
            echo xtc_image(DIR_WS_IMAGES . 'icon_arrow_right.gif', ICON_ARROW_RIGHT);
        } else {
            echo '<a href="' . xtc_href_link(FILENAME_CUSTOMERS, xtc_get_all_get_params(array('cID')) . 'cID=' . $customers['customers_id']) . '">' . xtc_image(DIR_WS_IMAGES . 'icon_info.gif', IMAGE_ICON_INFO) . '</a>';
        }
        ?>
                      </span>
                      <span class='hidden-md hidden-lg'>
                      <?php 
        echo '<a class="btn btn-default" onclick="this.blur();" href="' . xtc_href_link(FILENAME_CUSTOMERS, xtc_get_all_get_params(array('cID', 'action', 'edit')) . 'cID=' . $customers['customers_id'] . '&action=edit&edit=' . $addresses['address_book_id']) . '">' . BUTTON_EDIT . '</a>';
        ?>
                      </span>
                      &nbsp;</td>
                </tr>
                <?php 
    }
    ?>
                </table>
                    <div class="col-xs-12">
开发者ID:shophelfer,项目名称:shophelfer.com-shop,代码行数:31,代码来源:customers.php



注:本文中的xtc_image函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP xtc_image_button函数代码示例发布时间:2022-05-23
下一篇:
PHP xtc_href_link函数代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap