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

PHP javascript_include_tag函数代码示例

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

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



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

示例1: test_javascript_include_tag

 function test_javascript_include_tag()
 {
     $this->assertEqual('<script src="mocked_stylesheet_directory/assets/javascripts/source.js" type="text/javascript"></script>', javascript_include_tag("source"));
     $this->assertEqual('<script src="mocked_stylesheet_directory/assets/javascripts/source.js" type="text/javascript"></script>' . "\n" . '<script src="http://welaika.com/another_source.js" type="text/javascript"></script>', javascript_include_tag("source", "http://welaika.com/another_source.js"));
     $this->assertEqual('<script src="mocked_stylesheet_directory/assets/javascripts/source.js" type="text/javascript" charset="utf-8"></script>', javascript_include_tag("source", array("charset" => "utf-8")));
     $this->assertEqual('<script src="mocked_stylesheet_directory/assets/javascripts/source.js" type="text/javascript" charset="utf-8"></script>' . "\n" . '<script src="https://welaika.com/another_source.js" type="text/javascript" charset="utf-8"></script>', javascript_include_tag("source", "https://welaika.com/another_source.js", array("charset" => "utf-8")));
 }
开发者ID:nerdfiles,项目名称:brooklynmeatballcompany_com,代码行数:7,代码来源:asset_tag_helper_test.php


示例2: get_combined_javascripts

/**
 * Returns <script> tags with the url toward all javascripts configured in view.yml or added to the response object.
 *
 * You can use this helper to decide the location of javascripts in pages.
 * By default, if you don't call this helper, symfony will automatically include javascripts before </head>.
 * Calling this helper disables this behavior.
 *
 * @return string <script> tags
 */
function get_combined_javascripts()
{
    if (!sfConfig::get('app_sfCombinePlugin_enabled', false)) {
        return get_javascripts();
    }
    $response = sfContext::getInstance()->getResponse();
    sfConfig::set('symfony.asset.javascripts_included', true);
    $configSfCombinePlugin['js'] = sfConfig::get('app_sfCombinePlugin_js', array());
    $html = '';
    $jsFiles = $include_tags = array();
    foreach (array('first', '', 'last') as $position) {
        foreach ($response->getJavascripts($position) as $files => $options) {
            if (!in_array($files, $configSfCombinePlugin['js']['online']) && !in_array($files, $configSfCombinePlugin['js']['offline'])) {
                if (!is_array($files)) {
                    $files = array($files);
                }
                $jsFiles = array_merge($jsFiles, $files);
            } else {
                $include_tags[] = javascript_include_tag(url_for($files));
            }
        }
    }
    $key = _get_key($jsFiles);
    $include_tags[] = str_replace('.js', '', javascript_include_tag(url_for('sfCombine/js?key=' . $key)));
    return implode("", $include_tags);
}
开发者ID:cbsistem,项目名称:appflower_engine,代码行数:35,代码来源:sfCombineHelper.php


示例3: cdn_javascript_tag

/**
 * Generates a HTML Script include Tag, refering to our amazon bucket
 *
 * @author Christian Weyand
 * @param string $pFilename
 * @param array() $pOptions
 * @return unknown_type
 */
function cdn_javascript_tag($pFilename, $pOptions = array())
{
    if (sfConfig::get("sf_environment") != "dev") {
        $pFilename = concatNameWithRevision($pFilename, 'css');
    }
    return javascript_include_tag($pFilename, $pOptions);
}
开发者ID:42medien,项目名称:spreadly,代码行数:15,代码来源:CdnHelper.php


示例4: get_combined_javascripts

/**
 * Returns <script> tags for all javascripts configured in view.yml or added to the response object.
 *
 * You can use this helper to decide the location of javascripts in pages.
 * By default, if you don't call this helper, symfony will automatically include javascripts before </head>.
 * Calling this helper disables this behavior.
 *
 * @return string <script> tags
 */
function get_combined_javascripts()
{
    if (!sfConfig::get('app_sfCombinePlugin_enabled', false)) {
        return get_javascripts();
    }
    sfConfig::set('symfony.asset.javascripts_included', true);
    $html = '';
    $jsFiles = array();
    $regularJsFiles = array();
    $response = sfContext::getInstance()->getResponse();
    $config = sfConfig::get('app_sfCombinePlugin_js', array());
    $doNotCombine = isset($config['combine_skip']) ? $config['combine_skip'] : array();
    foreach ($response->getJavascripts() as $files => $options) {
        if (!is_array($files)) {
            $files = array($files);
        }
        // check for js files that should not be combined
        foreach ($files as $key => $value) {
            if (skip_asset($value, $doNotCombine)) {
                array_push($regularJsFiles, $value);
                unset($files[$key]);
            }
        }
        $jsFiles = array_merge($jsFiles, $files);
    }
    if (!empty($jsFiles)) {
        $html .= str_replace(array('.js', '.pjs'), '', javascript_include_tag(url_for('sfCombine/js?key=' . _get_key($jsFiles))));
    }
    foreach ($regularJsFiles as $file) {
        $file = javascript_path($file);
        $html .= javascript_include_tag($file);
    }
    return $html;
}
开发者ID:robinkanters,项目名称:dnsleergemeenschap,代码行数:43,代码来源:sfCombineHelper.php


示例5: renderMenu

 function renderMenu()
 {
     echo javascript_include_tag('sfShowHideMenu/ClickShowHideMenu.js');
     echo stylesheet_tag('sfShowHideMenu/ClickShowHideMenu.css');
     echo $this->buildMenuData();
     $menu_js = "var clickMenu1 = new ClickShowHideMenu('click-menu1');\n clickMenu1.init();\n";
     echo javascript_tag($menu_js);
 }
开发者ID:BackupTheBerlios,项目名称:flushcms,代码行数:8,代码来源:sfShowHideMenu.class.php


示例6: renderHtml

 function renderHtml()
 {
     echo stylesheet_tag('sfToolbar/dhtmlXToolbar.css');
     echo javascript_include_tag('sfToolbar/dhtmlXProtobar.js');
     echo javascript_include_tag('sfToolbar/dhtmlXToolbar.js');
     echo javascript_include_tag('sfToolbar/dhtmlXCommon.js');
     echo $this->renderTable();
     echo javascript_tag($this->buildData());
 }
开发者ID:BackupTheBerlios,项目名称:flushcms,代码行数:9,代码来源:sfToolbar.class.php


示例7: testJsIncludeTag

 public function testJsIncludeTag()
 {
     $this->assertDomEqual(javascript_include_defaults(), '<script src="/js/prototype.js" type="text/javascript"></script>
         <script src="/js/controls.js" type="text/javascript"></script>
         <script src="/js/dragdrop.js" type="text/javascript"></script>
         <script src="/js/effects.js" type="text/javascript"></script>');
     $this->assertDomEqual(javascript_include_tag('sortable'), '<script src="/js/sortable.js" type="text/javascript"></script>');
     $this->assertDomEqual(javascript_include_tag(array('sortable', 'test.js')), '<script src="/js/sortable.js" type="text/javascript"></script>
         <script src="/js/test.js" type="text/javascript"></script>');
 }
开发者ID:BackupTheBerlios,项目名称:stato-svn,代码行数:10,代码来源:asset_tag_helper.test.php


示例8: op_smt_get_javascripts

/**
 * Returns <script> tags for all javascripts for smartphone pages added to the response object.
 *
 * you can use this helper to decide the location of javascripts in pages.
 * by default, if you don't call this helper, openpne will automatically include javascripts before </head>.
 * calling this helper disables this behavior.
 *
 * @return string <script> tags
 *
 * @see get_javascripts()
 */
function op_smt_get_javascripts()
{
    $response = sfContext::getInstance()->getResponse();
    sfConfig::set('symfony.asset.javascripts_included', true);
    $html = '';
    foreach ($response->getSmtJavascripts() as $file => $options) {
        $html .= javascript_include_tag($file, $options);
    }
    return $html;
}
开发者ID:te-koyama,项目名称:openpne,代码行数:21,代码来源:opAssetHelper.php


示例9: javascript_include_tag

function javascript_include_tag($script_names)
{
    if (is_array($script_names)) {
        $tags = '';
        foreach ($script_names as $script) {
            $tags .= javascript_include_tag($script) . "\n";
        }
        return $tags;
    }
    $url = is_external_url($script_names) ? $script_names : url_for("/javascripts/{$script_names}?v=" . TIPI::getVersion());
    return '<script src="' . $url . '" type="text/javascript"></script>';
}
开发者ID:dollavon,项目名称:tipi,代码行数:12,代码来源:asset_helper.php


示例10: renderMenu

    function renderMenu()
    {
        echo stylesheet_tag('sfTreeMenu/DynamicTree.css');
        echo javascript_include_tag('sfTreeMenu/ie5.js');
        echo javascript_include_tag('sfTreeMenu/DynamicTree.js');
        echo $this->renderMenuData();
        $append_js = <<<EOD
\t\t
    var tree = new DynamicTree("tree");
    tree.init();
\t\t
EOD;
        echo javascript_tag($append_js);
    }
开发者ID:BackupTheBerlios,项目名称:flushcms,代码行数:14,代码来源:sfTreeMenu.class.php


示例11: printAssetPaths

function printAssetPaths($assets, $plugin = '')
{
    if (count($assets) > 0) {
        foreach ($assets as $key => $asset) {
            $assetType = substr($asset, strrpos($asset, '.') + 1);
            if ($plugin == '') {
                echo javascript_include_tag($asset);
            } elseif ($assetType == 'js') {
                echo javascript_include_tag(plugin_web_path($plugin, 'js/' . $asset));
            } elseif ($assetType == 'css') {
                echo stylesheet_tag(plugin_web_path($plugin, 'css/' . $asset));
            } else {
                echo $assetType;
            }
        }
    }
}
开发者ID:abdocmd,项目名称:orangehrm-3.0.1,代码行数:17,代码来源:_ohrmList.php


示例12: minify_get_javascripts

function minify_get_javascripts($position_array = array('first', '', 'last'), $debug = false, $my_already_seen = array())
{
    $response = sfContext::getInstance()->getResponse();
    $app_static_url = sfConfig::get('app_static_url');
    $already_seen = $my_already_seen;
    $minify_files = array();
    $external_files = array();
    foreach ($position_array as $position) {
        foreach ($response->getJavascripts($position) as $files) {
            if (!is_array($files)) {
                $files = array($files);
            }
            $options = array_merge(array('type' => 'text/javascript'));
            foreach ($files as $file) {
                // be sure to normalize files with .js at the end
                $file .= substr($file, -3) === '.js' ? '' : '.js';
                if (isset($already_seen[$file])) {
                    continue;
                }
                $already_seen[$file] = 1;
                // check if the javascript is on this server // TODO better handle + what if user wants to precisely place the call??
                if (preg_match('/http(s)?:\\/\\//', $file)) {
                    $external_files[] = $file;
                    break;
                }
                $file = javascript_path($file);
                $type = serialize($options);
                if (isset($minify_files[$type])) {
                    array_push($minify_files[$type], $file);
                } else {
                    $minify_files[$type] = array($file);
                }
            }
        }
    }
    $html = '';
    foreach ($external_files as $file) {
        $html .= javascript_include_tag($file);
    }
    foreach ($minify_files as $options => $files) {
        $options = unserialize($options);
        $options['src'] = minify_get_combined_files_url($files, $debug);
        $html .= content_tag('script', '', $options) . "\n";
    }
    return $html;
}
开发者ID:snouhaud,项目名称:camptocamp.org,代码行数:46,代码来源:MyMinifyHelper.php


示例13: render

    /**
     * Renders the widget.
     *
     * @param  string $name        The element name
     * @param  string $value       The value displayed in this widget
     * @param  array  $attributes  An array of HTML attributes to be merged with the default HTML attributes
     * @param  array  $errors      An array of errors for the field
     *
     * @return string An HTML tag string
     * @see sfWidgetForm
     */
    public function render($name, $value = null, $attributes = array(), $errors = array())
    {
        if (!$this->getAttribute('size')) {
            $this->setAttribute('size', $this->getOption('with_time') ? 15 : 9);
        }
        $this->default_picker_options['timeFormat'] = $this->getOption('time_format');
        $this->default_picker_options['dateFormat'] = $this->getOption('date_format');
        $this->default_picker_options['showSecond'] = strstr($this->getOption('time_format'), 'ss') !== false;
        if ($timestamp = strtotime($value)) {
            $value = strtr($this->getOption('date_format'), array('yy' => date('Y', $timestamp), 'mm' => date('m', $timestamp), 'dd' => date('d', $timestamp), 'y' => date('y', $timestamp), 'm' => date('n', $timestamp), 'd' => date('j', $timestamp)));
            if ($this->getOption('with_time')) {
                $value .= ' ' . strtr($this->getOption('time_format'), array('hh' => date('H', $timestamp), 'mm' => date('i', $timestamp), 'ss' => date('s', $timestamp), 'h' => date('G', $timestamp), 'm' => intval(date('i', $timestamp)), 's' => intval(date('s', $timestamp))));
            }
        }
        // Generate the datePicker javascript code
        $jq_picker_options = array_merge($this->default_picker_options, $this->getOption('jq_picker_options'));
        if (version_compare(PHP_VERSION, '5.3.0') >= 0) {
            $jq_picker_options = json_encode($jq_picker_options, JSON_FORCE_OBJECT);
        } else {
            $jq_picker_options = json_encode($jq_picker_options);
        }
        $jq_picker_options = str_replace('\\/', '/', $jq_picker_options);
        // Fix for: http://bugs.php.net/bug.php?id=49366
        $pickerClass = $this->getOption('with_time') ? 'datetimepicker' : 'datepicker';
        $id = $this->generateId($name);
        $attributes['class'] = 'sfDateTimePicker' . (isset($attributes['class']) ? ' ' . $attributes['class'] : '');
        $html = parent::render($name, $value, $attributes, $errors);
        foreach ($this->getStylesheets() as $file => $options) {
            $html .= stylesheet_tag($file, $options);
        }
        foreach ($this->getJavaScripts() as $file) {
            $html .= javascript_include_tag($file);
        }
        $html .= <<<EOHTML

<script type="text/javascript">
  jQueryPicker(function(){
    jQueryPicker("#{$id}").{$pickerClass}({$jq_picker_options});
//    jQueryPicker(".ui-datepicker").draggable();
  });
</script>

EOHTML;
        return $html;
    }
开发者ID:rozwell,项目名称:sfDateTimePickerPlugin,代码行数:56,代码来源:sfWidgetFormDatePicker.class.php


示例14: _include_javascripts

function _include_javascripts($position_array = array('first', '', 'last'), $debug = false, $my_already_seen = array())
{
    $response = sfContext::getInstance()->getResponse();
    $static_base_url = sfConfig::get('app_static_url');
    $already_seen = $my_already_seen;
    $internal_files = array();
    $external_files = array();
    foreach ($position_array as $position) {
        foreach ($response->getJavascripts($position) as $files) {
            if (!is_array($files)) {
                $files = array($files);
            }
            foreach ($files as $file) {
                // be sure to normalize files with .js at the end
                $file .= substr($file, -3) === '.js' ? '' : '.js';
                if (isset($already_seen[$file])) {
                    continue;
                }
                $already_seen[$file] = 1;
                // check if the javascript is on this server // TODO better handle + what if user wants to precisely place the call??
                if (preg_match('/http(s)?:\\/\\//', $file)) {
                    $external_files[] = $file;
                    break;
                }
                $file = javascript_path($file);
                $internal_files[] = $file;
            }
        }
    }
    $html = '';
    foreach ($external_files as $file) {
        $html .= javascript_include_tag($file);
    }
    foreach ($internal_files as $file) {
        $prefix = $debug ? '/no' : '';
        $ts = sfTimestamp::getTimestamp($file);
        if (!empty($ts)) {
            $file = '/' . $ts . $prefix . $file;
        } else {
            $file = $prefix . $file;
        }
        $html .= javascript_include_tag($static_base_url . $file);
    }
    return $html;
}
开发者ID:snouhaud,项目名称:camptocamp.org,代码行数:45,代码来源:MyJavascriptStyleSheetHelper.php


示例15: sw_get_javascripts

function sw_get_javascripts()
{
    $params = sfConfig::get('app_swToolbox_swCombine', array('version' => false));
    $version = $params['version'];
    $response = sfContext::getInstance()->getResponse();
    $included_files = $response->getCombinedAssets();
    sfConfig::set('symfony.asset.javascripts_included', true);
    $html = '';
    foreach ($response->getJavascripts() as $file => $options) {
        // avoid loading combined files
        if (in_array($file, $included_files)) {
            continue;
        }
        $file = $version ? $file . '?v=' . $version : $file;
        $html .= javascript_include_tag($file, $options);
    }
    return $html;
}
开发者ID:resid,项目名称:swCombinePlugin,代码行数:18,代码来源:swCombineHelper.php


示例16: renderMenu

    function renderMenu()
    {
        echo $this->display_mode == "vertical" ? stylesheet_tag('sfDropDownMenu/vertical.css') : stylesheet_tag('sfDropDownMenu/horizontal.css');
        echo javascript_include_tag('sfDropDownMenu/ie5.js');
        echo javascript_include_tag('sfDropDownMenu/XulMenu.js');
        $image_arrow1 = image_path('sfDropDownMenu/arrow1.gif');
        $image_arrow2 = image_path('sfDropDownMenu/arrow2.gif');
        $preload_image_js = <<<EOD
\t\t
    /* preload images */
    var arrow1 = new Image(4, 7);
    arrow1.src = "{$image_arrow1}";
    var arrow2 = new Image(4, 7);
    arrow2.src = "{$image_arrow2}";
\t\t
EOD;
        echo javascript_tag($preload_image_js);
        echo $this->renderMenuData();
    }
开发者ID:BackupTheBerlios,项目名称:flushcms,代码行数:19,代码来源:sfDropDownMenu.class.php


示例17: get_combined_javascripts

/**
 * Get the combined Javascripts in script links. Can get all groups or a
 * selection. Calling this method will stop symfony automatically inserting
 * scripts
 *
 *
 * @param   mixed $groupsUse        (Optional) A string or array of groups to
 *                                  include or exclude. Null for this to be
 *                                  ignored. Default null.
 * @param   int   $groupsUseType    (Optional) The type of grouping either
 *                                  sfCombinePlusManager::GROUP_INCLUDE or
 *                                  sfCombinePlusManager::GROUP_EXCLUDE.
 *                                  These dictate whether the group(s) in
 *                                  the previous argument should be marked
 *                                  as used or every group marked as used.
 *                                  Default sfCombinePlusManager::GROUP_INCLUDE
 * @param   bool  $onlyUnusedGroups (Optional) Only use unused groups. Default
 *                                  true.
 * @param   bool  $markGroupsUsed   (Optional) Mark the groups that are used
 *                                  as used. Default true.
 * @return  string
 */
function get_combined_javascripts($groups = null, $groupType = sfCombinePlusManager::GROUP_INCLUDE, $onlyUnusedGroups = true, $markGroupsUsed = true)
{
    if (!sfConfig::get('app_sfCombinePlusPlugin_enabled', false)) {
        return get_javascripts();
    }
    $manager = sfCombinePlusManager::getJsManager();
    sfConfig::set('symfony.asset.javascripts_included', true);
    $response = sfContext::getInstance()->getResponse();
    $config = sfConfig::get('app_sfCombinePlusPlugin_js', array());
    $doNotCombine = isset($config['combine_skip']) ? $config['combine_skip'] : array();
    $manager->setSkips(array_merge($manager->getSkips(), $doNotCombine));
    $groupedFiles = $manager->getAssetsByGroup($response->getJavascripts(), $config['combine'], $groups, $groupType, $onlyUnusedGroups, $markGroupsUsed);
    $html = '';
    foreach ($groupedFiles as $fileDetails) {
        if (!$fileDetails['combinable']) {
            $html .= javascript_include_tag(javascript_path($fileDetails['files']), $fileDetails['options']);
        } else {
            $route = isset($config['route']) ? $config['route'] : 'sfCombinePlus';
            $html .= javascript_include_tag(url_for('@' . $route . '?module=sfCombinePlus&action=js&' . sfCombinePlusUrl::getUrlString($fileDetails['files'])), $fileDetails['options']);
        }
    }
    return $html;
}
开发者ID:kevindew,项目名称:sfCombinePlusPlugin,代码行数:45,代码来源:sfCombinePlusHelper.php


示例18: echo

<!DOCTYPE html>
<html>
<head>
	<title><?php echo (isset($page) && !empty($page) ? $page->getAbsTitle() : ($title ? $title : 'Page Not Found')); ?> | <?php echo SITE_NAME; ?> </title>
	<meta http-equiv="Content-type" content="text/html; charset=utf-8">
	<?php
		echo stylesheet_include_tag(array('book.css', 'main.css', 'highlight.css', 'tipsy.css'));
		echo javascript_include_tag(array('jquery-1.5.min.js', 'jquery.tipsy.js', 'book.js'));
	?>
	<meta name="description" content="<?php echo SITE_DESC; ?>" />
	<link rel="alternate" type="application/rss+xml" title="<?php echo SITE_NAME;?>" href="<?php echo url_for("/feed/"); ?>" />
	<link rel="shortcut icon" href="<?php echo url_for("/favicon.ico"); ?>" type="image/vnd.microsoft.icon">
	<!--[if IE]><?php echo stylesheet_include_tag('ie.css'); ?><![endif]-->
</head>
<body id='book'>
	<?php SimpieView::include_partial("../templates/layout/_header.php"); ?>
	<div id="wrapper">
			<div id="book_header">
				<h1><a href='<?php echo url_for("/"); ?>'><span>深入理解PHP内核<span></a></h1>
				<p>Thinking In PHP Internal</p>
			</div>

			<div id="book_main" class="clearfix">
				<div class="<?php if($is_detail_view) {echo 'inner-wrapper';} ?> clearfix">
					<div id="<?php echo ($is_detail_view ? 'book_content' : 'book_index'); ?>" >
						<?php SimpieView::include_partial("../templates/layout/_book_tools.php", array('page' => $page, 'extra' => array('title' => ($title ? $title : '')))); ?>
						<div id="book_body" class="inner-containner">
							<?php echo $layout_content; ?>

							<?php if($is_detail_view): ?>
								<?php SimpieView::include_partial("../templates/layout/_book_navor.php", array('page' => $page)); ?>
开发者ID:redautumn,项目名称:tipi,代码行数:31,代码来源:book.php


示例19: get_javascripts_for_form

/**
 * Returns <script> tags for all javascripts associated with the given form.
 *
 * The scripts are set by implementing the getJavaScripts() method in the
 * corresponding widget.
 *
 * <code>
 * class MyWidget extends sfWidgetForm
 * {
 *   public function getJavaScripts()
 *   {
 *     return array('/path/to/a/file.js');
 *   }
 * }
 * </code>
 *
 * @return string <script> tags
 */
function get_javascripts_for_form(sfForm $form)
{
    $html = '';
    foreach ($form->getJavascripts() as $file) {
        $html .= javascript_include_tag($file);
    }
    return $html;
}
开发者ID:Esleelkartea,项目名称:legedia-ESLE,代码行数:26,代码来源:AssetHelper.php


示例20: bloginfo

<?php

require_once '/Users/effel/Development/stonebridge/wp-content/plugins/wordless/vendor/phamlp/haml/HamlHelpers.php';
?>
<!--Charset  --><meta content="text/html;charset=UTF-8" http-equiv="Content-type" /><meta content="width=device-width, initial-scale=1" name="viewport" /><!--Title  --><title>
  <?php 
echo bloginfo('title') . wp_title();
?>

</title><!--Stylesheets  --><!--screen.css is loaded by default with wp_head() function. See config/initializers/default_hooks.php for details  --><!--HTML5 Shiv  -->

<!--[if lt IE 9]>
  <?php 
echo javascript_include_tag("http://html5shiv.googlecode.com/svn/trunk/html5.js");
?>


<![endif]-->
  <?php 
wp_head();
开发者ID:stefbbq,项目名称:ms-stonebridge,代码行数:20,代码来源:28c7f62b4a9271855592663573f1e1c4.php



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

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

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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