Actions
Enhancement(機能追加・改善) #463
openAdd explicit casting string that its byte size is needed, to binary string (バイトサイズが求められている文字列型に、明示的なバイナリ文字列型への型変換を追加する)
Start date:
2010-01-11
Due date:
% Done:
0%
Estimated time:
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);
Updated by Kousuke Ebihara almost 15 years ago
- Target version deleted (
OpenPNE 3.5.0)
Actions