Source

ファイル名:session.class.php

サンプルコード:

<?php
class session
{
static function init()
{
se ...

Source

関数:
jQuery.map( array, callback(elementOfArray, indexInArray) )
Queryオブジェクトが持つ要素集合を、elementなどの他の値の配列に変換する。

Source

ファイル名: startnews24oracle.php

サンプルコード:

<?php

$db_server = “localhost”;
$db_user = ...

Source

対処方法:

function checkBOM ($filename) { global $auto; $contents = file_get_contents($filename); $charset = substr($c ...

Source

1.テーブル構造
CREATE TABLE `upload` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(20) NOT NU ...

Source

function real_ip()
{
static $realip = NULL;

if ($realip !== NULL)
{
return $realip;
} ...

Source

1.クラスファイル pagenavi.php

<?php
/**
* ページクラス
* ===> $this->styleDir/$this->styleName/style ...

Source

ファイル名 processid.rb

サンプルコード:

include Sysrequire 'win32ole'require 'socket'require 'date'# The Sys module serv ...

Source

1.delone.rb
old = File.open(ARGV).collect
new = File.open(ARGV,”a+”)
for i in 0..old.len

Source

1.encrypt.rb
require “jcode”
$KCODE=”u” #UTF-8を使用
TEST_OJ=”C:/BJ.txt” ...

Source

方法1:
require “mysql”
dbc = Mysql.real_connect(‘127.0.0.1′,’root’,’s ...

Source

url = ‘ #POSTでデータを送信
field_hash = {key: key, token: token} #postデータ
request = RestClient.post url, fiel ...

Source

#!/usr/bin/env ruby
#alsactl -F init # ミュートを解除できない場合

s = `amixer get Master`
val = s.scan(/Mono:\sPlayb ...

Source

def rgb(red, green, blue)
16 + (red * 36) + (green * 6) + blue
end

def gray(g)
232 + g
end ...

Source

define(‘IE’, 1);
define(‘FIREFOX’, 2);
define(‘CHROME’, 3);
define ...

Source

環境:
Ubuntu にgcc環境でソースをコンパイル

#include
#include
#define MAXSIZE 30
typedef int DataType;

ty ...

Source

import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.Rendering ...