length
の結果がmysqli_fetch_fields()
の場合、不正確な結果になります。mysqli_fetch_fields()はなぜ私に不正確な結果を与えていますか?
のMySQL>DESCRIBE Notices;
Field Type Null Key Default Extra
Id int(10) unsigned NO PRI (NULL) auto_increment
UserId int(10) unsigned NO MUL (NULL)
Title char(255) NO (NULL)
Name char(255) NO (NULL)
Summary text NO (NULL)
しかし、
class Db {
public function exec($sql) {
if (!$this->link) {
$this->open();
}
if (($this->result = mysqli_query($this->link, $sql)) === false) {
throw new Exception('<b>' . __METHOD__ . '</b>: ' . $sql . ': ' . mysqli_error($this->link));
}
return true;
}
public function field_info($table) {
$sql = 'SELECT * FROM `' . $table . '` LIMIT 1';
$this->exec($sql);
return $this->field_info = $this->result->fetch_fields();
}
}
$a = $db->field_info('Notices');
print_r($a);
は、次の出力を生成します。
// Note: "max_length" is the maximum existing length in the result set,
// while "length" is the set maximum length in the table definition.
Array
(
[0] => stdClass Object
(
[name] => Id
[orgname] => Id
[table] => Notices
[orgtable] => Notices
[def] =>
[max_length] => 1
[length] => 10
[charsetnr] => 63
[flags] => 49699
[type] => 3
[decimals] => 0
)
[1] => stdClass Object
(
[name] => UserId
[orgname] => UserId
[table] => Notices
[orgtable] => Notices
[def] =>
[max_length] => 1
[length] => 10
[charsetnr] => 63
[flags] => 53289
[type] => 3
[decimals] => 0
)
[2] => stdClass Object
(
[name] => Title
[orgname] => Title
[table] => Notices
[orgtable] => Notices
[def] =>
[max_length] => 27
[length] => 765
[charsetnr] => 33
[flags] => 4097
[type] => 254
[decimals] => 0
)
[3] => stdClass Object
(
[name] => Name
[orgname] => Name
[table] => Notices
[orgtable] => Notices
[def] =>
[max_length] => 25
[length] => 765
[charsetnr] => 33
[flags] => 4097
[type] => 254
[decimals] => 0
)
[4] => stdClass Object
(
[name] => Summary
[orgname] => Summary
[table] => Notices
[orgtable] => Notices
[def] =>
[max_length] => 26
[length] => 196605
[charsetnr] => 33
[flags] => 4113
[type] => 252
[decimals] => 0
)
)
あなたが見れば、あなたはCHAR
の報告の長さが表示されますフィールドが一致しません。 DESCRIBE
は私に255
を与え、fetch_fields()
は私に765
を与えている。どうして?
(アイデアは、あなたが迷っている場合には、<input>
タグのmaxlength
属性を生成することである。)
ここで、長さはバイト単位で表されていますか? [mysqli_fetch_fields'(http://php.net/manual/en/mysqli-result.fetch-fields.php#refsect1-mysqli-result.fetch-fields-returnvalues)のドキュメントには、「フィールドを指定してください。 "また、Windows上で間違った結果しか得られません。 Linuxで同じスクリプトを実行すると、期待される結果、つまり '255'が得られます。 –
@SebastianZartnerいいえ。私は、PHPとMySQLの両方がLinux上で動作していたのを見ていました。 (Ubuntu上でもCentOS上でも) – TRiG
右のコメントは、昨日の私の認識です。下の私の答えで見ることができますが、実際にはOSとは無関係ですが、むしろデフォルトのクライアントキャラクタセットによって定義されています。 –