Methods with the same name as their class will not be constructors in a futusupports_collation is deprecated since version 3.5.0! Use wpdb::has_cap( ‘collation’ ) inst……继续阅读 » 开心洋葱 8年前 (2017-06-16) 3061浏览 0评论2563个赞
Java求1000以内的水仙花数打印出所有的 “水仙花数 “,所谓 “水仙花数 “是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个 “水仙花数 “,因为153=1的三次方+5的三次方+3的三次方。public class 水仙花数 { public static v……继续阅读 » 水墨上仙 8年前 (2017-06-09) 2633浏览 1077个赞
Temporary breakpoint 2 at 0x100000ef4: file sort_select.c, line 30.Starting program: /Users/yt/Documents/CodeProj/c/sort_select During startup program terminated with signal SIG1……继续阅读 » 开心洋葱 8年前 (2017-06-04) 1659浏览 0评论558个赞
字符串编辑距离 这是一种字符串之间相似度计算的方法。 给定字符串S、T,将S转换T所需要的插入、删除、替代操作的数量叫做S到T的编辑路径。 其中最短的路径叫做编辑距离。 这里使用了一种动态规划的思想求编辑距离。package com.mycompany.project;/** * 字符串编辑距离 * * 这是一种字符串之间相似度计算的方法……继续阅读 » 水墨上仙 8年前 (2017-06-04) 2213浏览 527个赞
二、编译警告:warning C4996 与 Security Enhancements in the CRT将过去的工程用VS2005打开的时候。你有可能会遇到一大堆的警告:warning C4996。比如:warning C4996: ‘strcpy’: This function or variable may be un……继续阅读 » 开心洋葱 8年前 (2017-06-02) 1845浏览 0评论266个赞
用样式控制网页部分区域不被打印,我们经常需要在打印的网页上面放置一个打印按钮,如何让这个按钮不被同时打印出来,可以用一句样式解决。定义如下样式.noprint{display:none;} 只需要给不想打印的标签贴上noprint的class就可以了 <div class="noprint"> <i……继续阅读 » 水墨上仙 8年前 (2017-06-01) 2466浏览 1096个赞
打印出所有的 “水仙花数 “,所谓 “水仙花数 “是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个 “水仙花数 “,因为153=1的三次方+5的三次方+3的三次方。public class exp2{ public static void main(Strin……继续阅读 » 水墨上仙 8年前 (2017-05-31) 2010浏览 685个赞
C语言回溯法解决背包问题#include #include #include using namespace std;#define MAXN 10struct Goods_Info{ int v; //价值 int w; //重量 double vw; //价值重量比}goods[MAXN];int n;……继续阅读 » 水墨上仙 8年前 (2017-05-31) 2487浏览 2998个赞
100 可以表示为带分数的形式:100 = 3 + 69258 / 714 还可以表示为:100 = 82 + 3546 / 197 注意特征:带分数中,数字1~9分别出现且只出现一次(不包含0)。 类似这样的带分数,100 有 11 种表示法。#include#include/*检查某个数是否出现重位的情况,可以与nKill整合,但这儿单独列出*……继续阅读 » 水墨上仙 8年前 (2017-05-31) 1666浏览 660个赞
JS代码返回iframe的name属性(名称)<!DOCTYPE html><html><body><iframe id="myframe" src="/default.asp" name="myframe"><p>……继续阅读 » 水墨上仙 8年前 (2017-05-31) 1932浏览 1178个赞
0-1背包问题:给定n种物品和一背包.物品i的重量是wi, 其价值为ui,背包的容量为C. 问如何选择装入背包的物品,使得装入背包中物品的总价值最大? 分析: 0-1背包是子集合选取问题,一般情况下0-1背包是个NP问题. 第一步 确定解空间:装入哪几种物品 第二步 确定易于搜索的解空间结构: 可以用数组p,w分别表示各个物品价值和重量。 用数组x记录,是否……继续阅读 » 水墨上仙 8年前 (2017-05-31) 2436浏览 2084个赞
$file = Input::file(‘myfile’);if($file -> isValid()){ //检验一下上传的文件是否有效.$clientName = $file -> getClientOriginalName();$tmpName = $file ->getFileName(); // 缓存……继续阅读 » 开心洋葱 8年前 (2017-05-31) 1456浏览 0评论1181个赞
Input输入 输入设备(如按键,键盘,触摸屏,鼠标等)是典型的字符设备,其一般的工作机制是低层在按键,触摸等动作发生时产生一个中断(或驱动通过timer定时查询),然后cpu通过SPI,I2C或者外部存储器总线读取键值,坐标等数据,放一个缓冲区,字符设备驱动管理该缓冲区,而驱动的read()接口让用户可以读取键值,坐标等数据。 Linux 输入子……继续阅读 » 开心洋葱 8年前 (2017-05-29) 1929浏览 0评论1241个赞
通过JS代码控制iframe居左或者居右显示,下面的代码控制iframe居右显示,如果希望居左显示,只需要将right改成left即可<!DOCTYPE html><html><body><p>This is some text. This is some text. This is so……继续阅读 » 水墨上仙 8年前 (2017-05-27) 2139浏览 2503个赞
如果希望通过按钮动态修改iframe的高度和宽度,可以参考下面的JS代码<!DOCTYPE html><html><head><script>function changeSize(){document.getElementById("myframe").hei……继续阅读 » 水墨上仙 8年前 (2017-05-27) 2656浏览 2672个赞
Java使用逆波兰表达式算法制作的表达式计算器package com.infogrid.g2b; import java.util.HashMap; import java.util.Map; public class Op { private static final Ma……继续阅读 » 水墨上仙 8年前 (2017-05-27) 2739浏览 1443个赞
下面的代码可以用来去除iframe的滚动条<!DOCTYPE html><html><head><script>function removeScroll(){document.getElementById("myframe").scrolling="……继续阅读 » 水墨上仙 8年前 (2017-05-27) 3004浏览 2808个赞
============================================================GeoHash PHP ClassProvides a class for generating and decoding geohashes asdocumented at http://en.wikipedia.org/wiki/……继续阅读 » 开心洋葱 8年前 (2017-05-22) 1450浏览 0评论589个赞
php按单词截取字符串的代码,指定字符串和单词数量进行截取<?phpfunction limit_words($string, $word_limit){ $words = explode(" ",$string); return implode(" ",array_splice($……继续阅读 » 水墨上仙 8年前 (2017-05-09) 2343浏览 2813个赞
php生成随机密码的函数function auth_pwgen(){ $pw = ''; $c = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones $v = 'aeiou'; ……继续阅读 » 水墨上仙 8年前 (2017-05-09) 2457浏览 1198个赞
php检查要包含的文件是否存在可读……继续阅读 » 水墨上仙 8年前 (2017-05-09) 1918浏览 1781个赞
Facebook\WebDriver\Exception\WebDriverCurlException: Curl error thrown for http POST to /session with params: AuthTest::testLoginPageFacebook\WebDriver\Exception\WebDriverC……继续阅读 » 开心洋葱 8年前 (2017-05-08) 1743浏览 0评论1423个赞
如果文件大小为字节单位的,阅读起来不方便,这个函数可以把字节单位转换成KB,MB,GB,TB等单位,方便阅读function ByteSize ( $file_size ){ $file_size = $file_size-1; if ($file_size >= 1099511627776) $show_filesize = nu……继续阅读 » 水墨上仙 8年前 (2017-05-05) 2763浏览 1611个赞
php将文件夹下的所有图片放入数组function listImages($dirname=".") { $ext = array("jpg", "png", "jpeg", "gif"); $files = array(); ……继续阅读 » 水墨上仙 8年前 (2017-05-05) 2643浏览 190个赞
指定一个文件夹,在php里include这个文件夹下的所有.php文件foreach (glob("*.php") as $filename) { include($filename);}……继续阅读 » 水墨上仙 8年前 (2017-05-05) 1699浏览 2730个赞
php检测浏览器类型代码// Simple browser detection$is_lynx = $is_gecko = $is_winIE = $is_macIE = $is_opera = $is_NS4 = $is_safari = $is_chrome = false; if (strpos($_SERVER['HTTP_U……继续阅读 » 水墨上仙 8年前 (2017-05-05) 2063浏览 2595个赞
php动态生成表单代码<?php define('VALID_NOT_EMPTY', '/.+/'); define('VALID_EMAIL', "/^[a-z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&&……继续阅读 » 水墨上仙 8年前 (2017-05-04) 3013浏览 1751个赞
php动态改变图片尺寸后输出,输出图片时使用下面的地址:image_resize.php?img=image.jpg&w=150&h=150&constrain=1w和h为要显示的尺寸 0) { // calculate resized height and width if percent is defined ……继续阅读 » 水墨上仙 8年前 (2017-05-04) 1314浏览 524个赞
php不破坏单词截取子字符串的方法/* snippet(phrase,[max length],[phrase tail]) snippetgreedy(phrase,[max length before next space],[phrase tail]) */ function snippet($text,$le……继续阅读 » 水墨上仙 8年前 (2017-05-04) 1192浏览 1385个赞
php 将数组转换成xml的类class ArrayToXML{ /** * The main function for converting to an XML document. * Pass in a multi dimensional array and this recrusively loops through and bu……继续阅读 » 水墨上仙 8年前 (2017-05-03) 2051浏览 1741个赞
Migration table not found.Migration table created successfully. [Illuminate\Database\QueryException] SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was ……继续阅读 » 开心洋葱 8年前 (2017-04-24) 3062浏览 0评论2458个赞
(node:23771) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.> node-sass@3.13.1 ins……继续阅读 » 开心洋葱 8年前 (2017-04-22) 2919浏览 0评论2496个赞
You can however run a command with sudo using –allow-root optionError: post install error, please remove node_modules before retry!Run “sh -c bower install &……继续阅读 » 开心洋葱 8年前 (2017-04-22) 1507浏览 0评论2482个赞
Do not run Composer as root/super user! See https://getcomposer.org/root for detailsLoading composer repositories with package informationInstalling dependencies (including requi……继续阅读 » 开心洋葱 8年前 (2017-04-22) 2516浏览 0评论2865个赞
堆栈计算逆波兰式使用C语言实现逆波兰式(Reverse Polish notation,RPN,或逆波兰记法),也叫后缀表达式(将运算符写在操作数之后)一个表达式E的后缀形式可以如下定义:(1)如果E是一个变量或常量,则E的后缀式是E本身。(2)如果E是E1 op E2形式的表达式,这里op是如何二元操作符,则E的后缀式为E1’E2……继续阅读 » 水墨上仙 8年前 (2017-04-20) 1418浏览 2963个赞
通过JS代码提交(submit)表单,将提交按钮的类型设置为普通button,然后添加onclick属性 <!DOCTYPE html><html><head><script>function formSubmit(){document.getElementById("frm……继续阅读 » 水墨上仙 8年前 (2017-04-20) 2422浏览 1906个赞
下面的JS代码删除了iframe的frameBorder,iframe就没有了明显的边框显示 <!DOCTYPE html><html><head><script>function removeBorder(){document.getElementById("myframe……继续阅读 » 水墨上仙 8年前 (2017-04-20) 2458浏览 2100个赞
Go语言操作redis的代码演示/** * Created with IntelliJ IDEA. * User: happyonion * Date: 17-1-6 * Time: 上午10:58 */package mainimport ( "fmt" "log" &quo……继续阅读 » 水墨上仙 8年前 (2017-04-16) 1853浏览 416个赞
fmt.Sscanf科学计数法示例package mainimport "fmt"func main() { var ( old = "75271.0000002e+19" new float64 ) n, err := fmt.S……继续阅读 » 开心洋葱 8年前 (2017-04-14) 1242浏览 0评论335个赞
创建,添加到PHP中的数组里$MyArray = array(); do { $MyArray[] = $row_rsMyRecordset['MyField'];} while ($row_rsMyRecordset = mysql_fetch_assoc($rsMyRecordset));pr……继续阅读 » 开心洋葱 8年前 (2017-04-14) 1394浏览 0评论652个赞
Ignored attempt to cancel a touchmove event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.js遇到这种问题解决办法,目前还没有解决,知道的小伙伴可以在评论区留言,找到答案后……继续阅读 » 开心洋葱 8年前 (2017-04-14) 1499浏览 1评论1954个赞
判断给定的数是否是回文数Java使用StringBuffer的reverse方法实现回文数是指一个像16461这样“对称”的数,即:将这个数的数字按相反的顺序重新排列后,所得到的数和原来的数一样。import java.util.*; public class PalindromeV2{ public static void main(……继续阅读 » 水墨上仙 8年前 (2017-04-13) 2085浏览 756个赞
Fatal error: Maximum execution time of 0 seconds exceeded会显示Fatal error: Maximum execution time of 2147483647 seconds exceeded即使是设置 max_execution_time 为9999999,也是一样报错解决办法:max_……继续阅读 » 开心洋葱 8年前 (2017-04-12) 2721浏览 0评论1302个赞
java语言将大数组拆分成小数组示例//定义一个长度为X的数组 String[] all = new String[10]; for (int i = 0; i < 10; i++) { all[i]="组"+i; } //定义每个小数组的长度 int SMS_GROUP_NUMER = 3……继续阅读 » 水墨上仙 8年前 (2017-04-01) 2048浏览 710个赞
Android下快速生成get、set、toString等方法,Java语法 有两种方式:方式一:通过快捷键Alt+Insert方式二:Code–>Generate刚开始使用Android Studio时,在创建一个javabean时,很习惯的在JavaBean类中,右键去找生成get,set等选项。但是……继续阅读 » 水墨上仙 8年前 (2017-04-01) 2430浏览 2731个赞