update : 2015.11.03
php.shukuma.com검색:
|
sqlite_udf_decode_binary(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) sqlite_udf_decode_binary — Decode binary data passed as parameters to an UDF 설명
string sqlite_udf_decode_binary
( string
$data
)Decodes binary data passed as parameters to a UDF. You must call this function on parameters passed to your UDF if you need them to handle binary data, as the binary encoding employed by PHP will obscure the content and of the parameter in its natural, non-coded form. PHP does not perform this encode/decode operation automatically as it would severely impact performance if it did. 인수
반환값The decoded string. 예제
Example #1 binary-safe max_length aggregation function example
<?php 참고
|