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


PHP WP_CLI::read_value方法代碼示例

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


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

示例1: perform_option_action

 /**
  * Perform an option action on a remote site
  */
 private function perform_option_action($action, $args, $assoc_args)
 {
     $site_id = $assoc_args['site-id'];
     unset($assoc_args['site-id']);
     list($option_name) = $args;
     $this->set_account();
     $method = strtoupper($action);
     if ('update' == $action) {
         $method = 'POST';
         $api_args = array('option_value' => WP_CLI::read_value($args[1], $assoc_args));
     } else {
         $api_args = array();
     }
     $args = array('endpoint' => 'site/' . (int) $site_id . '/option/' . $option_name, 'method' => $method, 'body' => $api_args);
     $response = $this->api_request($args);
     if (is_wp_error($response)) {
         WP_CLI::error($response->get_error_message());
     }
     switch ($action) {
         case 'get':
             if (empty($response)) {
                 die(1);
             }
             WP_CLI::print_value($response, $assoc_args);
             break;
         case 'update':
             WP_CLI::success("Updated '{$option_name}' option.");
             break;
         case 'delete':
             WP_CLI::success("Deleted '{$option_name}' option.");
             break;
     }
 }
開發者ID:gokuale,項目名稱:wp-remote-cli,代碼行數:36,代碼來源:class-wp-remote-option-command.php

示例2: update

 /**
  * Update an option
  *
  * @alias set
  * @synopsis <key> <value> [--json]
  */
 public function update($args, $assoc_args)
 {
     $key = $args[0];
     $value = WP_CLI::read_value($args[1], $assoc_args);
     if ($value === get_option($key)) {
         return;
     }
     if (!update_option($key, $value)) {
         WP_CLI::error("Could not update option '{$key}'.");
     }
 }
開發者ID:nunomorgadinho,項目名稱:wp-cli,代碼行數:17,代碼來源:option.php

示例3: update

 /**
  * Update a meta field.
  *
  * @alias set
  * @synopsis <id> <key> <value> [--format=<format>]
  */
 public function update($args, $assoc_args)
 {
     list($object_id, $meta_key) = $args;
     $meta_value = \WP_CLI::read_value($args[2], $assoc_args);
     $success = \update_metadata($this->meta_type, $object_id, $meta_key, $meta_value);
     if ($success) {
         \WP_CLI::success("Updated custom field.");
     } else {
         \WP_CLI::error("Failed to update custom field.");
     }
 }
開發者ID:nb,項目名稱:wp-cli,代碼行數:17,代碼來源:CommandWithMeta.php

示例4: update

 /**
  * Update an option.
  *
  * @alias set
  * @synopsis <key> <value> [--format=<format>]
  */
 public function update($args, $assoc_args)
 {
     $key = $args[0];
     $value = WP_CLI::read_value($args[1], $assoc_args);
     $result = update_option($key, $value);
     // update_option() returns false if the value is the same
     if (!$result && $value != get_option($key)) {
         WP_CLI::error("Could not update option '{$key}'.");
     } else {
         WP_CLI::success("Updated '{$key}' option.");
     }
 }
開發者ID:nb,項目名稱:wp-cli,代碼行數:18,代碼來源:option.php

示例5: update

 /**
  * Update an option
  *
  * @param array $args
  **/
 public function update($args, $assoc_args)
 {
     if (count($args) < 2) {
         WP_CLI::line("usage: wp option update <option-name> <option-value>");
         exit;
     }
     $key = $args[0];
     $value = WP_CLI::read_value($args[1], $assoc_args);
     if ($value === get_option($key)) {
         return;
     }
     if (!update_option($key, $value)) {
         WP_CLI::error("Could not update option '{$key}'.");
     }
 }
開發者ID:roelven,項目名稱:wp-cli,代碼行數:20,代碼來源:option.php

示例6: update

 /**
  * Update an option.
  *
  * ## OPTIONS
  *
  * <key>
  * : The name of the option to add.
  *
  * [<value>]
  * : The new value. If ommited, the value is read from STDIN.
  *
  * [--autoload=<autoload>]
  * : Requires WP 4.2. Should this option be automatically loaded. Accepted values: yes, no. Default: yes
  *
  * [--format=<format>]
  * : The serialization format for the value. Default is plaintext.
  *
  * ## EXAMPLES
  *
  *     # Update an option by reading from a file
  *     wp option update my_option < value.txt
  *
  *     # Update one option on multiple sites using xargs
  *     wp site list --field=url | xargs -n1 -I {} sh -c 'wp --url={} option update <key> <value>'
  *
  * @alias set
  */
 public function update($args, $assoc_args)
 {
     $key = $args[0];
     $value = WP_CLI::get_value_from_arg_or_stdin($args, 1);
     $value = WP_CLI::read_value($value, $assoc_args);
     $autoload = \WP_CLI\Utils\get_flag_value($assoc_args, 'autoload');
     if (!in_array($autoload, array('yes', 'no'))) {
         $autoload = null;
     }
     $value = sanitize_option($key, $value);
     $old_value = sanitize_option($key, get_option($key));
     if ($value === $old_value && is_null($autoload)) {
         WP_CLI::success("Value passed for '{$key}' option is unchanged.");
     } else {
         if (update_option($key, $value, $autoload)) {
             WP_CLI::success("Updated '{$key}' option.");
         } else {
             WP_CLI::error("Could not update option '{$key}'.");
         }
     }
 }
開發者ID:Jaace,項目名稱:wp-cli,代碼行數:48,代碼來源:option.php

示例7: update

 /**
  * Update an option.
  *
  * ## OPTIONS
  *
  * <key>
  * : The name of the option to add.
  *
  * [<value>]
  * : The new value. If ommited, the value is read from STDIN.
  *
  * [--format=<format>]
  * : The serialization format for the value. Default is plaintext.
  *
  * ## EXAMPLES
  *
  *     # Update an option by reading from a file
  *     wp option update my_option < value.txt
  *
  *     # Update one option on multiple sites using xargs
  *     wp site list --field=url | xargs -n1 -I {} sh -c 'wp --url={} option update <key> <value>'
  *
  * @alias set
  */
 public function update($args, $assoc_args)
 {
     $key = $args[0];
     $value = WP_CLI::get_value_from_arg_or_stdin($args, 1);
     $value = WP_CLI::read_value($value, $assoc_args);
     $value = sanitize_option($key, $value);
     $old_value = sanitize_option($key, get_option($key));
     if ($value === $old_value) {
         WP_CLI::success("Value passed for '{$key}' option is unchanged.");
     } else {
         if (update_option($key, $value)) {
             WP_CLI::success("Updated '{$key}' option.");
         } else {
             WP_CLI::error("Could not update option '{$key}'.");
         }
     }
 }
開發者ID:dleatherman,項目名稱:timbangular-js,代碼行數:41,代碼來源:option.php

示例8: update

 /**
  * Update a meta field.
  *
  * ## OPTIONS
  *
  * <id>
  * : The ID of the object.
  *
  * <key>
  * : The name of the meta field to update.
  *
  * [<value>]
  * : The new value. If ommited, the value is read from STDIN.
  *
  * [--format=<format>]
  * : The serialization format for the value. Default is plaintext.
  *
  * @alias set
  */
 public function update($args, $assoc_args)
 {
     list($object_id, $meta_key) = $args;
     $meta_value = \WP_CLI::get_value_from_arg_or_stdin($args, 2);
     $meta_value = \WP_CLI::read_value($meta_value, $assoc_args);
     $object_id = $this->check_object_id($object_id);
     $meta_value = sanitize_meta($meta_key, $meta_value, $this->meta_type);
     $old_value = sanitize_meta($meta_key, get_metadata($this->meta_type, $object_id, $meta_key, true), $this->meta_type);
     if ($meta_value === $old_value) {
         \WP_CLI::success("Value passed for custom field '{$meta_key}' is unchanged.");
     } else {
         $success = \update_metadata($this->meta_type, $object_id, $meta_key, $meta_value);
         if ($success) {
             \WP_CLI::success("Updated custom field '{$meta_key}'.");
         } else {
             \WP_CLI::error("Failed to update custom field '{$meta_key}'.");
         }
     }
 }
開發者ID:dleatherman,項目名稱:timbangular-js,代碼行數:38,代碼來源:CommandWithMeta.php


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