Enhancement(機能追加・改善) #463
Add explicit casting string that its byte size is needed, to binary string (バイトサイズが求められている文字列型に、明示的なバイナリ文字列型への型変換を追加する)
Start date:
2010-01-11
Due date:
% Done:
0%
Description
Add explicit casting string that its byte size is needed, to binary string.
バイトサイズが求められている文字列型に、明示的なバイナリ文字列型への型変換を追加する。
Example:
$this->setFilesize(strlen($this->FileBin->bin));
to
$this->setFilesize(strlen((binary)$this->FileBin->bin));
Example:
$authMode = substr($pluginName, strlen('opAuth'), $endPoint);
to
$authMode = substr($pluginName, strlen(b'opAuth'), $endPoint);
History
#1
Updated by Kousuke Ebihara over 13 years ago
- Target version deleted (
OpenPNE 3.5.0)
#2
Updated by kaoru n over 3 years ago
- Target version set to OpenPNE 3.10.x