2007年03月30日
フィールドタイプの説明
■項目タイプ(フィールドタイプ)
・MySQL 項目型
int / integer 4 バイト整数
smailint 2 バイト整数
bigint / int8 8 バイト整数
float 浮動小数点
double / real 倍精度浮動小数点
date 日付
time 時間
timestamp 日付時間
char(文字数) 固定長文字列 (最大 256 文字)
varchar(文字数) 可変長文字列 (最大 256 文字)
text ラージ文字列 (最大 65535 文字)
mediumtext ラージ文字列 (最大 1677215 文字)
largetext ラージ文字列 (最大 4294967295 文字)
blob ラージバイナリ(最大 65535 bytes)
mediumblob ラージバイナリ(最大 1677215 bytes)
largeblob ラージバイナリ(最大 4294967295 bytes)
■順序作成(オートナンバー)
・順序は、auto_increment と定義することで利用できる。キー指定しないとエラーが発生する。
・MySQL 項目型
int / integer 4 バイト整数
smailint 2 バイト整数
bigint / int8 8 バイト整数
float 浮動小数点
double / real 倍精度浮動小数点
date 日付
time 時間
timestamp 日付時間
char(文字数) 固定長文字列 (最大 256 文字)
varchar(文字数) 可変長文字列 (最大 256 文字)
text ラージ文字列 (最大 65535 文字)
mediumtext ラージ文字列 (最大 1677215 文字)
largetext ラージ文字列 (最大 4294967295 文字)
blob ラージバイナリ(最大 65535 bytes)
mediumblob ラージバイナリ(最大 1677215 bytes)
largeblob ラージバイナリ(最大 4294967295 bytes)
■順序作成(オートナンバー)
・順序は、auto_increment と定義することで利用できる。キー指定しないとエラーが発生する。
2007年03月03日
文字列データの置換
str_replace()関数を使う。
str_replace()…引数に含まれる文字列を、指定した文字列に置き換える。
str_replace (検索文字, 置換後の文字列, 元の文字列)
☆サンプルデータ
<? php
$beginner = "初心者のためのホームページ作り";
$replace = "ホームページ作り";
$scriptphp = "PHP入門";
$word = str_replace($replace, $scriptphp, $beginner);
print($word);
?>
☆実行結果
⇒初心者のためのPHP入門
-----------------------------------------------------------
今回行ったことは上記を応用して絶対パスを相対パスに変換。
☆サンプルデータ
<? php
$path = /home/example/public_html/example.html;
$ori = $path;
$rep = "/home/example/public_html/";
$scr = "http://www.example.jp/";
$acc = str_replace($rep, $scr, $ori);
print($acc);
?>
☆実行結果
⇒http://www.example.jp/example.html
[参考URL]
http://www.scollabo.com/banban/php/ref/ref_str_replace.html
str_replace()…引数に含まれる文字列を、指定した文字列に置き換える。
str_replace (検索文字, 置換後の文字列, 元の文字列)
☆サンプルデータ
<? php
$beginner = "初心者のためのホームページ作り";
$replace = "ホームページ作り";
$scriptphp = "PHP入門";
$word = str_replace($replace, $scriptphp, $beginner);
print($word);
?>
☆実行結果
⇒初心者のためのPHP入門
-----------------------------------------------------------
今回行ったことは上記を応用して絶対パスを相対パスに変換。
☆サンプルデータ
<? php
$path = /home/example/public_html/example.html;
$ori = $path;
$rep = "/home/example/public_html/";
$scr = "http://www.example.jp/";
$acc = str_replace($rep, $scr, $ori);
print($acc);
?>
☆実行結果
⇒http://www.example.jp/example.html
[参考URL]
http://www.scollabo.com/banban/php/ref/ref_str_replace.html