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


PHP strings::update_raw方法代码示例

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


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

示例1: strings

                 //echo "CREATE";
                 $new_me->create($props);
             } else {
                 //echo "EDIT";
                 if ($APP['fs']->connect()) {
                     $keyname = $GLOBALS['settings'][$APP['fs']->kind]['paths']['job-output']['@attributes']['value'] . "/" . sha1(microtime() . $new_me->str_value) . ".txt";
                     $bucket_name = $GLOBALS['settings'][$APP['fs']->kind][$APP['fs']->bucket_syntax()]['@attributes']['value'];
                     $file_upload_success = $fs->create_object(false, $bucket_name, $keyname, $props['str_value'], "text/plain");
                     if ($file_upload_success) {
                         $FILE_LOCATION = $APP['fs']->key_url($bucket_name, $keyname);
                         $new_string = new strings();
                         $new_string->get_from_hashrange($new_me->str_value);
                         if ($new_string->id != "undefined") {
                             $props = array();
                             $props["val"] = $FILE_LOCATION;
                             $new_string->update_raw($props);
                         }
                     }
                 }
                 // end if (able to connect to file storage
                 // update latest cache
                 //$JOB->obj_hf->update_raw(array("str_cache_latest"=>$sha1_string));
                 // existing entry for this setting
                 //$new_me->update(array('str_value'=>$props['str_value']));
             }
         }
         // end if (a non-standard me field)
     }
     // end for ( through each form field sent)
 }
 // end if (update)
开发者ID:hisapi,项目名称:his,代码行数:31,代码来源:controller.action_handler.php


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