操作
Enhancement(機能追加・改善) #463
未完了Add explicit casting string that its byte size is needed, to binary string (バイトサイズが求められている文字列型に、明示的なバイナリ文字列型への型変換を追加する)
開始日:
2010-01-11
期日:
進捗率:
0%
予定工数:
説明
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);
操作