本文整理匯總了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)