首页 软件开发 代码片段 ( Page 32 )

代码片段 8064

#Lua
如何在移动广告平台中IOS应用中集成插页式广告

一:前提条件 将 SDK 添加到Xcode项目部分。 二:将插页式广告添加到项目中 对于GADInterstitial,建议您采用如下的生命周期设置:在应用启动时预加载它,并在它准…

lua
2015-12-17 166

#PHP
jQuery 正则常见匹配

var reg = /^[1-9]\d*$/; //校验数量为正整数 var nameRule = /^[\u4e00-\u9fa5]{2,20}$/; //姓名正则匹配 var …

php
2015-12-17 735

#PHP
ShopNC 产品分类搜索功能

# file: \shop\control\search.php if ($_GET['keyword'] != '') { // 品牌搜索 $model_brand = Mode…

php
2015-12-17 833

#Lua
Java 编码例子

package org.test; import java.io.UnsupportedEncodingException; public class GetCharTest { …

lua
2015-12-17 921

#Lua
直接插入排序,快速排序,选择排序给学生成绩排名

#include<stdio.h> #include<malloc.h> #include<string.h> typedef struct{ …

lua
2015-12-17 590

#PHP
循环创建目录

function createDir($path){ if (!file_exists($path)){ createDir(dirname($path)); mkdir($pat…

php
2015-12-17 632

#Lua
复制文件

/** 工具包: commons-io-1.3.2.jar */ //struts2 中 String realPath = ServletActionContext.getSer…

lua
2015-12-17 697

#Lua
数制转换

#include<stdio.h> #include<stdlib.h> typedef int SElemType ; unsigned n;//非负整数…

lua
2015-12-17 435

#PHP
磁力链接打包下载

<?php /** * 磁力链接下载,根据 关键词 文件大小 保存到指定文件中 */ class Magnet{ public $host='https://btdigg.o…

php
2015-12-17 208

#PHP
ShopNC 文章链接限制修改

#file: /admin/templates/default/article.add.php #file: /admin/templates/default/article.ed…

php
2015-12-17 662

#Lua
APS算法-截取时间范围内的时间段

/// <summary> /// 截取时间范围内的时间段 /// </summary> public static List<SJDuan> …

lua
2015-12-17 313
1 30 31 32 33 34 672