當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_XmlRpc_Value::setGenerator方法代碼示例

本文整理匯總了PHP中Zend_XmlRpc_Value::setGenerator方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_XmlRpc_Value::setGenerator方法的具體用法?PHP Zend_XmlRpc_Value::setGenerator怎麽用?PHP Zend_XmlRpc_Value::setGenerator使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_XmlRpc_Value的用法示例。


在下文中一共展示了Zend_XmlRpc_Value::setGenerator方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testMarschalBigIntegerFromApacheXmlRpc

 /**
  * @group ZF-6445
  * @dataProvider Zend_XmlRpc_TestProvider::provideGenerators
  */
 public function testMarschalBigIntegerFromApacheXmlRpc(Zend_XmlRpc_Generator_GeneratorAbstract $generator)
 {
     Zend_XmlRpc_Value::setGenerator($generator);
     $bigIntegerValue = (string) (PHP_INT_MAX + 42);
     $bigInteger = new Zend_XmlRpc_Value_BigInteger($bigIntegerValue);
     $bigIntegerXml = '<value><ex:i8 xmlns:ex="http://ws.apache.org/xmlrpc/namespaces/extensions">' . $bigIntegerValue . '</ex:i8></value>';
     $value = Zend_XmlRpc_Value::getXmlRpcValue($bigIntegerXml, Zend_XmlRpc_Value::XML_STRING);
     $this->assertSame($bigIntegerValue, $value->getValue());
     $this->assertEquals(Zend_XmlRpc_Value::XMLRPC_TYPE_I8, $value->getType());
     $this->assertEquals($this->wrapXml($bigIntegerXml), $value->saveXml());
 }
開發者ID:crodriguezn,項目名稱:crossfit-milagro,代碼行數:15,代碼來源:BigIntegerValueTest.php

示例2: testMarshalBase64FromXmlRpc

 /**
  * @dataProvider Zend_XmlRpc_TestProvider::provideGenerators
  */
 public function testMarshalBase64FromXmlRpc(Zend_XmlRpc_Generator_GeneratorAbstract $generator)
 {
     Zend_XmlRpc_Value::setGenerator($generator);
     $native = 'foo';
     $xml = '<value><base64>' . base64_encode($native) . '</base64></value>';
     $val = Zend_XmlRpc_Value::getXmlRpcValue($xml, Zend_XmlRpc_Value::XML_STRING);
     $this->assertXmlRpcType('base64', $val);
     $this->assertEquals('base64', $val->getType());
     $this->assertSame($native, $val->getValue());
     $this->assertEquals($this->wrapXml($xml), $val->saveXml());
 }
開發者ID:sasezaki,項目名稱:mirror-zf1-tests,代碼行數:14,代碼來源:ValueTest.php

示例3: set_include_path

<?php 
/**
 * Zend_XmlRpc_Generator_XmlWriter->saveXml()
 * fix   
 *   $this->_xmlWriter->flush(false)
 * to
 *   $this->_xmlWriter->flush(true);   
 */
// installed framework
set_include_path(realpath('../src/ZendFramework/library'));
// required classes
require_once 'Zend/XmlRpc/Generator/XmlWriter.php';
require_once 'Zend/XmlRpc/Value.php';
// be sure to use the leaky generator
$generator = new Zend_XmlRpc_Generator_XmlWriter();
Zend_XmlRpc_Value::setGenerator($generator);
// test a thousand times
for ($i = 1000; $i > 0; $i--) {
    // make a thousand stars
    $bug = str_pad('', 1000, '*');
    // factorize value
    $bug = Zend_XmlRpc_Value::getXmlRpcValue($bug, Zend_XmlRpc_Value::XMLRPC_TYPE_STRING);
    // save value, this leaks!
    $bug = $bug->saveXml();
    // report sometimes
    if ($i % 100 === 0) {
        $mem = floor(memory_get_usage() / 1024);
        echo "KB {$mem}\n";
    }
    // print once
    if ($i === 1) {
開發者ID:Tony133,項目名稱:zf-web,代碼行數:31,代碼來源:ZendXmlRpcGeneratorXmlWriterLeaks.php


注:本文中的Zend_XmlRpc_Value::setGenerator方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。