カテゴリー
SugiBlog Webエンジニアのためのお役立ちTips

配列を操作する便利な関数

●range
範囲を指定して、まとめて配列を作成
例)range(0, 9999); range("a", "z");

●array_merge
複数の配列を結合
例)$ARRAY = array_merge($ARRAY1, $ARRAY2, $ARRAY3);

1,039 views

apache_note [PHP]

Apacheのログに好きな情報を出力させる。

例)

$val = "hogehoge";
apache_note("originallog", $val);

Apache httpd.confにログフォーマット設定
LogFormat "%h %l %u %t \"%r\" %>s %b %{originallog}n" common

出力結果
192.168.212.51 - - [20/Jul/2005:21:39:03 +0900] "GET /index.php HTTP/1.1" 200 735 hogehoge
1,703 views

気になるもの

HIP HOP for PHP
memchache

PHP 参照渡し
  function test(&$args)

悲観的並行性制御(pessimistic concurrency control)
楽観的並行性制御(optimistic concurrency control)

Java or Ruby

Interface
TypeHinting

住宅ローン控除(減税)
平成25年まで

特優賃

1,346 views

ファイルのダウンロード

System.Net.WebClientクラスを使用してファイルをダウンロードします

//参照を追加
using System.Net;

・単純なダウンロード

public static void getFile(string uri, string filename)
{
    WebClient wc = new WebClient();
    wc.DownloadFile(uri, filename);
    wc.Dispose();
}

・バイト配列でダウンロード

public static byte[] getFile(string uri)
{
    byte[] data;

    //WebClientの作成
    WebClient wc = new WebClient();
    //ファイルをダウンロードする
    try
    {
        data = wc.DownloadData(uri);

        //後始末
        wc.Dispose();

        if (data.Length < 2500)
        {
            return null;
        }
    }
    catch
    {
        data = null;
    }

    return data;
}

・バイト配列から書き込み保存

public static void SaveFile(byte[] data, string filename)
{
    FileStream fsTo = new FileStream(filename, FileMode.Create, FileAccess.Write);

    fsTo.Write(data, 0, data.Length);

    fsTo.Close();
}
1,635 views

指定した幅で文字列を丸める mb_strimwidth

string mb_strimwidth ( string $str, int $start, int $width [, string $trimmarker [, string $encoding]] )

str
 入力文字列
start
 開始位置(先頭はゼロ)
width
 幅
trimmarker
 丸められた文字列に追加する文字列
encoding
 文字エンコーディング(省略された場合は内部エンコーディングが使用される)

例)
$string = "文字列処理のテストです。";

echo mb_strimwidth($string, 0, 10, "...", "SJIS");

結果
文字列…
1,142 views