Development

phpコード:
<?php

function subistr($string, $length, $dot = ‘ …’) {
global $charset; ...

Development

phpコード:
function delDir($dirName) { //ディレクトリを削除
if (!file_exists($dirName)) {
echo ‘Folder ‘. ...

Development

1.ファイル名
calendar.class.php
サンプルコード:
<?php
class Calendar
{
private $year;
private $mon ...

Development

pythonコード:
#-*- coding: utf-8 -*-
#!/usr/bin/python
import paramiko
import threading
def ssh2(ip, ...

Development

findall

1.使用方法1
s = ‘hello world’
p = ‘hello’
re.findall(p,s)

2.使用方法2 ...

Development

PHPコード:

“^\d+$”
“^**$”
“^((-\d+)|(0+))$”
“^-**$” ...

Development

phpコード:
function modifyUri($param = ”, $value = ”) {
//現在のページのURIを取得する
$uri = $_SERVER;
$ ...

Development

php コード:

/**
* 文字列を切り取る
*
* @static
* @access public
* @param string $str 変換文字列
* @para ...

Development

php コード:
/**
* 容量フォーマット
*
* @param Int $filesize
* @return Srting
*/
function sizecount ( ...

Development

PHPコード:
<?php
class MS{
static $mem;
static $maxtime;

function __construct($mem){
self:: ...

Development

PHPコード:
<?php
/*============================説明========================================
@filename: sess ...

Development

PHPコード:
<?php
function DateAdd($date, $int, $unit = “d”) {//時間の加算
$dateArr = explode(̶ ...

Development

サンプルコード下記:

import sys;
import os;

class LineCount:
def trim(self,docstring):
if not docstring ...

Development

phpコード:
<?php
function check_date($date) {//日付の合法性をチェック
$dateArr = explode(“-“, $date); ...

Development

PHPコード:
<?
function osinfo() {
$os=””;
$Agent = $GLOBALS;
if (eregi(‘winR ...

Development

PHPコード:
<?
function browse_infor()
{
$browser=””;$browserver=””;
$Brow ...

Development

phpコード:

<?
$mime_types = array(
‘gif’ => ‘image/gif’,
‘jpg̵ ...

Development

phpコード:
<?
header(“Content-type:application/vnd.ms-excel”);
header(“Content-Disposit ...