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

PHP getClass函数代码示例

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

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



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

示例1: applyRule

	public function applyRule(ISC_QUOTE $quote)
	{
		if (!customerIsSignedIn()) {
			return null;
		}

		$customerId = getClass('ISC_CUSTOMER')->getCustomerId();
		$query = "
			SELECT COUNT(*)
			FROM [|PREFIX|]orders
			WHERE ordcustid='".$customerId."' AND ordstatus > 0 AND deleted = 0
			LIMIT 1
		";
		$orderCount = $GLOBALS['ISC_CLASS_DB']->fetchOne($query);

		// Discount does not apply
		if($orderCount <= $this->orders) {
			return false;
		}

		$items = $quote->getItems();
		$totalDiscount = 0;
		// The discount needs to come off each item, so that tax is also affected.
		foreach($items as $item) {
			$discountAmount = $item->getDiscountedBaseTotal() * ($this->amount / 100);
			$item->addDiscount($this->getDbId(), $discountAmount);
			$totalDiscount += $discountAmount;
		}

		$quote->addDiscount($this->getDbId(), $totalDiscount);
		$this->banners[] = sprintf(getLang($this->getName().'DiscountMessage'), $this->amount);
		return true;
	}
开发者ID:hungnv0789,项目名称:vhtm,代码行数:33,代码来源:module.xpercentoffforrepeatcustomers.php


示例2: setUp

	public function setUp()
	{
		parent::setUp();
		$this->_engine = getClass('ISC_ADMIN_ENGINE');
		$this->_engine->LoadLangFile('settings.emailintegration');
		$this->_log = $GLOBALS['ISC_CLASS_LOG'];
	}
开发者ID:hungnv0789,项目名称:vhtm,代码行数:7,代码来源:EmailIntegration.php


示例3: autoSaltUserPassword

	public function autoSaltUserPassword()
	{
		$query = '
			SELECT
				pk_userid, salt, userpass
			FROM
				`[|PREFIX|]users`
			WHERE
				salt = ""
		';
		$result = $GLOBALS['ISC_CLASS_DB']->query($query);
		$total = $GLOBALS['ISC_CLASS_DB']->countResult($result);
		$count = 0;
		while ($user = $GLOBALS['ISC_CLASS_DB']->fetch($result)) {
			// auto salt md5-ed user password with a 15 len salt
			$updatedUser = $user;
			$updatedUser['salt'] = substr(md5(uniqid()), 0, 15);
			$updatedUser['userpass'] = getClass('ISC_ADMIN_USER')->generatePasswordHash($user['userpass'], $updatedUser['salt']);
			$GLOBALS['ISC_CLASS_DB']->updateQuery('users', $updatedUser, "pk_userid='".$GLOBALS['ISC_CLASS_DB']->quote($user['pk_userid'])."'");
			$count++;
		}

		echo "\tAuto-salted password for $count/$total user(s)\n";
		if ($count == $total) {
			return true;
		}

		return false;
	}
开发者ID:hungnv0789,项目名称:vhtm,代码行数:29,代码来源:6016.php


示例4: proc

 /**
  * @brief 위젯의 실행 부분
  *
  * ./widgets/위젯/conf/info.xml 에 선언한 extra_vars를 args로 받는다
  * 결과를 만든후 print가 아니라 return 해주어야 한다
  **/
 function proc($args)
 {
     $oDocument =& getClass('document');
     $site_module_info = Context::get('site_module_info');
     Context::set('widget_info', $widget_info);
     $args->site_srl = (int) $site_module_info->site_srl;
     // 회원수 추출
     $output = executeQuery('widgets.site_info.getMemberCount', $args);
     $widget_info->member_count = $output->data->cnt;
     // 새글 추출
     $args->regdate = date("YmdHis", time() - 24 * 60 * 60);
     $output = executeQuery('widgets.site_info.getNewDocument', $args);
     $widget_info->new_documents = $output->data->cnt;
     // 개설일
     $output = executeQuery('widgets.site_info.getCreatedDate', $args);
     $widget_info->created = $output->data->regdate;
     // 가입 여부
     $logged_info = Context::get('logged_info');
     if (count($logged_info->group_list)) {
         $widget_info->joined = true;
     } else {
         $widget_info->joined = false;
     }
     Context::set('widget_info', $widget_info);
     Context::set('colorset', $args->colorset);
     // 템플릿 컴파일
     $tpl_path = sprintf('%sskins/%s', $this->widget_path, $args->skin);
     $tpl_file = 'site_info';
     $oTemplate =& TemplateHandler::getInstance();
     return $oTemplate->compile($tpl_path, $tpl_file);
 }
开发者ID:hottaro,项目名称:xpressengine,代码行数:37,代码来源:site_info.class.php


示例5: getBoardAdminSimpleSetup

 /**
  * Get the board module admin simple setting page
  * @return void
  */
 public function getBoardAdminSimpleSetup($moduleSrl, $setupUrl)
 {
     if (!$moduleSrl) {
         return;
     }
     Context::set('module_srl', $moduleSrl);
     // default module info setting
     $oModuleModel = getModel('module');
     $moduleInfo = $oModuleModel->getModuleInfoByModuleSrl($moduleSrl);
     $moduleInfo->use_status = explode('|@|', $moduleInfo->use_status);
     if ($moduleInfo) {
         Context::set('module_info', $moduleInfo);
     }
     // get document status list
     $oDocumentModel = getModel('document');
     $documentStatusList = $oDocumentModel->getStatusNameList();
     Context::set('document_status_list', $documentStatusList);
     // set order target list
     foreach ($this->order_target as $key) {
         $order_target[$key] = Context::getLang($key);
     }
     $order_target['list_order'] = Context::getLang('document_srl');
     $order_target['update_order'] = Context::getLang('last_update');
     Context::set('order_target', $order_target);
     // for advanced language & url
     $oAdmin = getClass('admin');
     Context::set('setupUrl', $setupUrl);
     // Extract admin ID set in the current module
     $admin_member = $oModuleModel->getAdminId($moduleSrl);
     Context::set('admin_member', $admin_member);
     $oTemplate =& TemplateHandler::getInstance();
     $html = $oTemplate->compile($this->module_path . 'tpl/', 'board_setup_basic');
     return $html;
 }
开发者ID:kimkucheol,项目名称:xe-core,代码行数:38,代码来源:board.admin.model.php


示例6: onlineMapRenderCallback

function onlineMapRenderCallback($data, $x, $y)
{
    $imgX = 16;
    $imgY = 16;
    $x = round($x - $imgX / 2, 0);
    $y = round($y - $imgY / 2, 0);
    $gender = $data['gender'];
    $class = $data['class'];
    $race = $data['race'];
    $level = $data['level'];
    $faction = getPlayerFaction($race);
    $map_name = getMapName($data['map']);
    $area_name = getAreaNameFromPoint($data['map'], $data['position_x'], $data['position_y'], $data['position_z']);
    $img = $faction == 0 ? "gps_icon1.png" : "gps_icon.png";
    $text = "<table class=online_map>";
    $text .= "<tr><td class=" . ($faction == 0 ? "aname" : "hname") . ">" . $data['name'] . "</td></<tr>";
    if ($area_name) {
        $text .= "<tr><td align=center>{$area_name}<br>";
    }
    $text .= "<tr><td align=center>";
    $text .= "<img width=20 src=" . getRaceImage($race, $gender) . "> <img width=20 src=" . getClassImage($class) . "><br>";
    $text .= getRace($race) . "<br>";
    $text .= getClass($class) . "<br>";
    $text .= "Level - {$level}<br>";
    $text .= "</td></tr>";
    $text .= "</table>";
    return '<img src="images/map_points/' . $img . '" class=point style="left: ' . $x . '; top: ' . $y . ';" ' . addTooltip($text) . '>' . "\n";
}
开发者ID:BACKUPLIB,项目名称:Infinity_MaNGOS,代码行数:28,代码来源:online.php


示例7: sms

 public function sms()
 {
     $model = M('Sms_mb');
     $mb = $model->where('model="Student"')->find();
     if ($mb) {
         $map['id'] = array('in', $_POST['ids']);
         $name = $this->getActionName();
         $model = M($name);
         $vo = $model->where($map)->select();
         if ($vo > getSmsNum()) {
             $this->error('您的短信剩余条数不足以完成本次发送,剩余条数' . getSmsNum());
         } else {
             foreach ($vo as $key => $value) {
                 $name = getStudentinfo($value['id'], 'nickname');
                 $xuehao = getStudentinfo($value['id'], 'account');
                 $class = getClass(getStudentinfo($value['id'], 'class_id'));
                 $gender = getStudentinfo($value['id'], 'gender');
                 $tel = getStudentinfo($value['id'], 'tel');
                 $content = str_replace('{name}', $name, $mb['content']);
                 $content = str_replace('{xuehao}', $xuehao, $content);
                 $content = str_replace('{class}', $class, $content);
                 $content = str_replace('{gender}', $gender, $content);
                 $content = str_replace('{tel}', $tel, $content);
                 sendSms($tel, $content);
             }
             $this->success('发送成功!');
         }
     } else {
         $this->error('请先设置模板');
     }
 }
开发者ID:diycp,项目名称:stusys,代码行数:31,代码来源:复件+StudentAction.class.php


示例8: ClassData

 private static function ClassData($class)
 {
     $fields = Request::getRequest('page', 'int');
     $page = isset($fields) && $fields > 0 ? $fields : 1;
     $article = self::$models->Article;
     $mem = self::$models->Memcache;
     $configclass = getClass();
     $meunclass = $configclass['menu_class'];
     $articleclass = $configclass['article_class'];
     if (empty($meunclass[$class]) && empty($articleclass[$class])) {
         View::AdminErrorMessage('goback', '入口错误误误!');
     }
     $ret = $mem->get('classController_ClassData_' . $class . $page);
     $memc = $class;
     if (!empty($meunclass[$class]) && is_array($meunclass[$class])) {
         $class = $meunclass[$class];
         array_shift($class);
         $class = array_flip($class);
     }
     if (empty($ret)) {
         $ret = array();
         $ret['articleClassList'] = $article->getArticleClassList($class, $page);
         $ret['pageNav'] = @array_pop($ret['articleClassList']);
         $mem->set('classController_ClassData_' . $memc . $page, $ret);
     }
     $ret['meunclass'] = $meunclass;
     $ret['articleclass'] = $articleclass;
     $ret['nav'] = $class;
     View::Transmit('newclassshow', $ret);
 }
开发者ID:leunico,项目名称:aliceBlog,代码行数:30,代码来源:classController.php


示例9: dispLicenseAdminConfig

 function dispLicenseAdminConfig()
 {
     $oLicenseModel =& getModel('license');
     $oModuleModel =& getModel('module');
     $config = $oLicenseModel->getModuleConfig();
     Context::set('config', $config);
     $products = array();
     // 'nstore', 'nstore_digital', 'elearning');
     if (getClass('nstore')) {
         $products[] = 'nstore';
     }
     if (getClass('nstore_digital')) {
         $products[] = 'nstore_digital';
     }
     if (getClass('elearning')) {
         $products[] = 'elearning';
     }
     Context::set('products', $products);
     foreach ($products as $key => $prodid) {
         $has_license = TRUE;
         $expiration = NULL;
         if ($oLicenseModel->getLicenseFromAgency($prodid, $has_license, $expiration)) {
             $oLicenseModel->getLicenseFromAgency($prodid, $has_license, $expiration);
         }
         Context::set(sprintf('%s_expiration', $prodid), $expiration);
     }
     $this->setTemplateFile('index');
 }
开发者ID:WEN2ER,项目名称:nurigo,代码行数:28,代码来源:license.admin.view.php


示例10: styleClasses

function styleClasses($settings)
{
    function getClass($settings, $property)
    {
        return $settings->{$property} ? $property : "";
    }
    return getClass($settings, "caption-italic") . " " . getClass($settings, "caption-caps");
}
开发者ID:haleystorm,项目名称:paradise,代码行数:8,代码来源:gallery.php


示例11: procAdminRecompileCacheFile

 /**
  * Regenerate all cache files
  * @return void
  */
 function procAdminRecompileCacheFile()
 {
     // rename cache dir
     Rhymix\Framework\Storage::move(\RX_BASEDIR . 'files/cache', \RX_BASEDIR . 'files/cache_' . time());
     Rhymix\Framework\Storage::createDirectory(\RX_BASEDIR . 'files/cache');
     // remove module extend cache
     Rhymix\Framework\Storage::delete(RX_BASEDIR . 'files/config/module_extend.php');
     // remove debug files
     Rhymix\Framework\Storage::delete(RX_BASEDIR . 'files/_debug_message.php');
     Rhymix\Framework\Storage::delete(RX_BASEDIR . 'files/_debug_db_query.php');
     Rhymix\Framework\Storage::delete(RX_BASEDIR . 'files/_db_slow_query.php');
     $oModuleModel = getModel('module');
     $module_list = $oModuleModel->getModuleList();
     // call recompileCache for each module
     foreach ($module_list as $module) {
         $oModule = NULL;
         $oModule = getClass($module->module);
         if (method_exists($oModule, 'recompileCache')) {
             $oModule->recompileCache();
         }
     }
     // remove object cache
     if (!in_array(Rhymix\Framework\Cache::getDriverName(), array('file', 'sqlite', 'dummy'))) {
         Rhymix\Framework\Cache::clearAll();
     }
     // remove old cache dir
     $tmp_cache_list = FileHandler::readDir(\RX_BASEDIR . 'files', '/^(cache_[0-9]+)/');
     if ($tmp_cache_list) {
         foreach ($tmp_cache_list as $tmp_dir) {
             if (strval($tmp_dir) !== '') {
                 $tmp_dir = \RX_BASEDIR . 'files/' . strval($tmp_dir);
                 if (!Rhymix\Framework\Storage::isDirectory($tmp_dir)) {
                     continue;
                 }
                 // If possible, use system command to speed up recursive deletion
                 if (function_exists('exec') && !preg_match('/(?<!_)exec/', ini_get('disable_functions'))) {
                     if (strncasecmp(\PHP_OS, 'win', 3) == 0) {
                         @exec('rmdir /S /Q ' . escapeshellarg($tmp_dir));
                     } else {
                         @exec('rm -rf ' . escapeshellarg($tmp_dir));
                     }
                 }
                 // If the directory still exists, delete using PHP.
                 Rhymix\Framework\Storage::deleteDirectory($tmp_dir);
             }
         }
     }
     // remove duplicate indexes (only for CUBRID)
     $db_type = Context::getDBType();
     if ($db_type == 'cubrid') {
         $db = DB::getInstance();
         $db->deleteDuplicateIndexes();
     }
     // check autoinstall packages
     $oAutoinstallAdminController = getAdminController('autoinstall');
     $oAutoinstallAdminController->checkInstalled();
     $this->setMessage('success_updated');
 }
开发者ID:rhymix,项目名称:rhymix,代码行数:62,代码来源:admin.admin.controller.php


示例12: procAdminRecompileCacheFile

 /**
  * Regenerate all cache files
  * @return void
  */
 function procAdminRecompileCacheFile()
 {
     // rename cache dir
     $temp_cache_dir = './files/cache_' . $_SERVER['REQUEST_TIME'];
     FileHandler::rename('./files/cache', $temp_cache_dir);
     FileHandler::makeDir('./files/cache');
     // remove module extend cache
     FileHandler::removeFile(_XE_PATH_ . 'files/config/module_extend.php');
     // remove debug files
     FileHandler::removeFile(_XE_PATH_ . 'files/_debug_message.php');
     FileHandler::removeFile(_XE_PATH_ . 'files/_debug_db_query.php');
     FileHandler::removeFile(_XE_PATH_ . 'files/_db_slow_query.php');
     $oModuleModel = getModel('module');
     $module_list = $oModuleModel->getModuleList();
     // call recompileCache for each module
     foreach ($module_list as $module) {
         $oModule = NULL;
         $oModule = getClass($module->module);
         if (method_exists($oModule, 'recompileCache')) {
             $oModule->recompileCache();
         }
     }
     // remove cache
     $truncated = array();
     $oObjectCacheHandler = CacheHandler::getInstance('object');
     $oTemplateCacheHandler = CacheHandler::getInstance('template');
     if ($oObjectCacheHandler->isSupport()) {
         $truncated[] = $oObjectCacheHandler->truncate();
     }
     if ($oTemplateCacheHandler->isSupport()) {
         $truncated[] = $oTemplateCacheHandler->truncate();
     }
     if (count($truncated) && in_array(FALSE, $truncated)) {
         return new Object(-1, 'msg_self_restart_cache_engine');
     }
     // remove cache dir
     $tmp_cache_list = FileHandler::readDir('./files', '/(^cache_[0-9]+)/');
     if ($tmp_cache_list) {
         foreach ($tmp_cache_list as $tmp_dir) {
             if ($tmp_dir) {
                 FileHandler::removeDir('./files/' . $tmp_dir);
             }
         }
     }
     // remove duplicate indexes (only for CUBRID)
     $db_type = Context::getDBType();
     if ($db_type == 'cubrid') {
         $db = DB::getInstance();
         $db->deleteDuplicateIndexes();
     }
     // check autoinstall packages
     $oAutoinstallAdminController = getAdminController('autoinstall');
     $oAutoinstallAdminController->checkInstalled();
     $this->setMessage('success_updated');
 }
开发者ID:kkkyyy03,项目名称:coffeemix,代码行数:59,代码来源:admin.admin.controller.php


示例13: __get

 public function __get($name)
 {
     if (array_key_exists($name, $this->data)) {
         if (in_array($name, $this->serializable)) {
             return unserialize($this->data[$name]);
         }
         return $this->data[$name];
     }
     $class = getClass($this);
     throw new Exception("Invalid property {$name} for {$class}");
 }
开发者ID:comodojo,项目名称:comodojo-framework,代码行数:11,代码来源:View.php


示例14: showPlayerTalents

function showPlayerTalents($guid, $class, $level, $spec)
{
    global $lang;
    $bild = generateCharacterBild($guid, $class, $spec);
    $calc = array('none', 'warrior', 'paladin', 'hunter', 'rogue', 'priest', 'FUTURE_1', 'shaman', 'mage', 'warlock', 'FUTURE_2', 'druid');
    echo '<div id="talent"></div>';
    echo '<a href="?talent=' . $calc[$class] . '" id=talent_bild_link>' . $lang['player_talent_calc'] . '</a><br>';
    includeTalentScript($class, -1, $level, getClass($class));
    echo '<script type="text/javascript">tc_bildFromStr("' . $bild['calc_bild'] . '");</script>';
    echo '<script type="text/javascript">tc_renderTree("talent");</script>';
}
开发者ID:BACKUPLIB,项目名称:Infinity_MaNGOS,代码行数:11,代码来源:show_char_talents.php


示例15: skills

 /**
  * Returns the list fo all skills available to a ninja.
  **/
 function skills($username)
 {
     if (!$username) {
         $username = get_username();
     }
     if (false && DEBUG && $username == 'glassbox') {
         $skills = $this->skill_map['Blue'] + $this->skill_map['White'] + $this->skill_map['Red'] + $this->skill_map['Black'] + $this->skill_map['All'];
         return $skills;
     }
     return $this->skill_map[getClass($username)] + $this->skill_map['All'];
 }
开发者ID:ninjajerry,项目名称:ninjawars,代码行数:14,代码来源:Skill.php


示例16: setUp

	public function setUp()
	{
		parent::setUp();

		GetLib('class.json');
		$this->_keystore = Interspire_KeyStore::instance();
		$this->_prefix = 'ebay:list_products:' . $this->args['id'] . ':';
		$this->_db = $GLOBALS['ISC_CLASS_DB'];
		$this->_engine = getClass('ISC_ADMIN_ENGINE');
		$this->_engine->LoadLangFile('ebay');
		$this->_log = $GLOBALS['ISC_CLASS_LOG'];
	}
开发者ID:hungnv0789,项目名称:vhtm,代码行数:12,代码来源:ListProducts.php


示例17: procAdminRecompileCacheFile

 /**
  * Regenerate all cache files
  * @return void
  */
 function procAdminRecompileCacheFile()
 {
     // rename cache dir
     $temp_cache_dir = './files/cache_' . time();
     FileHandler::rename('./files/cache', $temp_cache_dir);
     FileHandler::makeDir('./files/cache');
     // remove debug files
     FileHandler::removeFile(_XE_PATH_ . 'files/_debug_message.php');
     FileHandler::removeFile(_XE_PATH_ . 'files/_debug_db_query.php');
     FileHandler::removeFile(_XE_PATH_ . 'files/_db_slow_query.php');
     $oModuleModel =& getModel('module');
     $module_list = $oModuleModel->getModuleList();
     // call recompileCache for each module
     foreach ($module_list as $module) {
         $oModule = null;
         $oModule =& getClass($module->module);
         if (method_exists($oModule, 'recompileCache')) {
             $oModule->recompileCache();
         }
     }
     // remove cache
     $truncated = array();
     $oObjectCacheHandler =& CacheHandler::getInstance('object');
     $oTemplateCacheHandler =& CacheHandler::getInstance('template');
     if ($oObjectCacheHandler->isSupport()) {
         $truncated[] = $oObjectCacheHandler->truncate();
     }
     if ($oTemplateCacheHandler->isSupport()) {
         $truncated[] = $oTemplateCacheHandler->truncate();
     }
     if (count($truncated) && in_array(false, $truncated)) {
         return new Object(-1, 'msg_self_restart_cache_engine');
     }
     // remove cache dir
     $tmp_cache_list = FileHandler::readDir('./files', '/(^cache_[0-9]+)/');
     if ($tmp_cache_list) {
         foreach ($tmp_cache_list as $tmp_dir) {
             if ($tmp_dir) {
                 FileHandler::removeDir('./files/' . $tmp_dir);
             }
         }
     }
     // remove duplicate indexes (only for CUBRID)
     $db_type =& Context::getDBType();
     if ($db_type == 'cubrid') {
         $db =& DB::getInstance();
         $db->deleteDuplicateIndexes();
     }
     $this->setMessage('success_updated');
 }
开发者ID:relip,项目名称:xe-core,代码行数:54,代码来源:admin.admin.controller.php


示例18: __construct

	public function __construct()
	{
		/**
		 * Convert the input character set from the hard coded UTF-8 to their
		 * selected character set
		 */
		convertRequestInput();

		$this->template = Interspire_Template::getInstance('admin');
		$this->db = $GLOBALS['ISC_CLASS_DB'];
		$this->auth = getClass('ISC_ADMIN_AUTH');
		$this->engine = getClass('ISC_ADMIN_ENGINE');
		parent::__construct();
	}
开发者ID:hungnv0789,项目名称:vhtm,代码行数:14,代码来源:class.remote.base.php


示例19: __construct

	public function __construct()
	{
		if(defined('ISC_ADMIN_CP')) {
			$this->template = Interspire_Template::getInstance('admin');
			$this->auth = getClass('ISC_ADMIN_AUTH');
			$this->engine = getClass('ISC_ADMIN_ENGINE');
		}

		$this->db = $GLOBALS['ISC_CLASS_DB'];

		if (isset($GLOBALS['ISC_CLASS_LOG'])) {
			// the logging global isn't available during installation
			$this->log = $GLOBALS['ISC_CLASS_LOG'];
		}
	}
开发者ID:hungnv0789,项目名称:vhtm,代码行数:15,代码来源:class.base.php


示例20: __construct

	public function __construct()
	{
		$this->template = Interspire_Template::getInstance('admin');
		$this->auth = getClass('ISC_ADMIN_AUTH');
		$this->engine = getClass('ISC_ADMIN_ENGINE');

		$this->templateDirectories = array(
			ISC_BASE_PATH.'/templates/__master/',
			ISC_BASE_PATH.'/templates/'.GetConfig('template').'/',
		);

		$this->directoryTypes = array(
			'StyleSheet' => 'Styles',
			'Layout' => '',
			'Snippet' => 'Snippets',
			'Panel' => 'Panels'
		);
	}
开发者ID:hungnv0789,项目名称:vhtm,代码行数:18,代码来源:class.designmode.php



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
PHP getClassName函数代码示例发布时间:2022-05-15
下一篇:
PHP getChmod函数代码示例发布时间: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