本文整理汇总了PHP中data::init方法的典型用法代码示例。如果您正苦于以下问题:PHP data::init方法的具体用法?PHP data::init怎么用?PHP data::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类data
的用法示例。
在下文中一共展示了data::init方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
require_once 'KnownCompositeType.php';
require_once 'application_data.php';
require_once 'binary.php';
/**
* Represents an AMQP Message Format data application-data section
*
* @category Networking
* @package libamqp
* @author Raphael Cohn <raphael.cohn@stormmq.com>
* @author Eamon Walshe <eamon.walshe@stormmq.com>
* @copyright 2012 Raphael Cohn and Eamon Walshe
* @license http://www.apache.org/licenses/LICENSE-2.0.html Apache License, Version 2.0
* @version Release: @package_version@
*/
class data extends KnownCompositeType implements application_data
{
protected static $descriptor_name;
protected static $descriptor_code;
/**
* @param string $value
*/
public function __construct($value)
{
parent::__construct();
$this->value = new binary($value);
}
}
require_once 'symbol.php';
require_once 'ulong.php';
data::init(new symbol("amqp:data:binary"), ulong::instance_from_domain(0x0, 0x75));