我正在使用CBOR在我的 C 应用程序和 PHP 脚本中打包数据。对于 PHP,我已经从上面的站点下载了实现。它在 PHP 5.4.23 上运行良好,但在 PHP 5.3.3 上,包括 CBOREncoder.php 会产生错误:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /var/www/html1/......./CBOREncoder.php on line 15
这是 CBOREncoder.php 的开头:
<?php
/**
* CBOR encoder/decoder
*
* http://tools.ietf.org/html/rfc7049
* http://habrahabr.ru/post/208690/ thx man :)
*
* Class CBOREncoder
*/
class CBOREncoder
{
const
MAJOR_OFFSET = 5,
HEADER_WIPE = 0b00011111, <-- this line produces error
ADDITIONAL_WIPE = 0b11100000,
有什么问题?