当前位置: 首页>>代码示例>>PHP>>正文


PHP Property::setValue方法代码示例

本文整理汇总了PHP中Property::setValue方法的典型用法代码示例。如果您正苦于以下问题:PHP Property::setValue方法的具体用法?PHP Property::setValue怎么用?PHP Property::setValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Property的用法示例。


在下文中一共展示了Property::setValue方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: set

 /**
  * Shorthand to create or update properties
  *
  * @return void
  * @author Carlos Escribano <carlos@markhaus.com>
  **/
 public static function set($key, $value)
 {
     if (!($p = Doctrine::getTable('Property')->findOneBy('keey', $key))) {
         $p = new Property();
         $p->setKeey($key);
     }
     $p->setValue($value);
     $p->save();
 }
开发者ID:solutema,项目名称:siwapp-sf1,代码行数:15,代码来源:PropertyTable.class.php

示例2: createProperties

 private function createProperties()
 {
     $propertiesList = $this->document->getElementsByTagName('property');
     foreach ($propertiesList as $property) {
         $obj = new Property();
         $name = $property->getAttribute("name");
         $value = $property->getAttribute("value");
         $obj->setName($name);
         $obj->setValue($value);
         $this->addProperty($name, $obj);
     }
 }
开发者ID:rodrigoprestesmachado,项目名称:whiteboard,代码行数:12,代码来源:PropertiesDom.php

示例3: dirname

<?php

include dirname(__FILE__) . '/../../bootstrap/Doctrine.php';
$t = new lime_test(7, new lime_output_color());
include dirname(__FILE__) . '/../../testTools.php';
// begin testing
$t->comment('Property class test');
$p = new Property();
$p->hydrate(array('keey' => 'testKey', 'value' => '{"a":1,"b":"geo"}'));
$t->comment('getRawValue()');
$t->is($p->getRawValue(), $p->rawGet('value'), 'getRawValue is really raw');
$t->comment('->getValue()');
$t->is($p->getValue(), array('a' => 1, 'b' => 'geo'), 'json conversion works');
$p->hydrate(array('value' => '{"a":1,"b":"g€e\'ñ"}'));
$t->is($p->getValue(), array('a' => 1, 'b' => "g€e'ñ"), 'json works with weird chars');
$p->hydrate(array('value' => '{"abcd ñep\\"ab\\"":1}'));
$t->is($p->getValue(), array('abcd ñep"ab"' => 1), 'Special chars untouched');
$t->comment('->setValue()');
$arr = array('a' => 1, 'b' => 2);
$p->setValue($arr);
$t->is($p->getValue(), $arr, 'json conversion works fine both ways');
$t->comment('test that changing the currency_decimals property changes the view');
PropertyTable::set('currency_decimals', 2);
$test_invoice->setAmounts();
$t->is($test_invoice->getGrossAmount(), 238.35, 'checking 2 decimals');
PropertyTable::set('currency_decimals', 3);
$test_invoice->setAmounts();
$t->is($test_invoice->getGrossAmount(), 238.354, 'checking 3 decimals');
PropertyTable::set('currency_decimals', 2);
开发者ID:solutema,项目名称:siwapp-sf1,代码行数:29,代码来源:PropertyTest.php


注:本文中的Property::setValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。