How to update custom options programatically in magento?

magento, magento-1.7, mysql, php, product

Solution

i found one solution for updating custom options programatically here is the solution

$product = Mage::getModel('catalog/product')->load($product_id);
$values = array();
foreach ($product->getOptions() as $o) {
           $p = $o->getValues();
        }
    }
  foreach($p as $v)
        {
            $values[$v->getId()]['option_type_id']= $v->getId();
                $values[$v->getId()]['title']= 'test';
                $values[$v->getId()]['price']= 23;
                $values[$v->getId()]['price_type']= 'fixed';
                $values[$v->getId()]['sku']= $value1;

          }
        $v->setValues($values);
        $v->saveValues();
$product->save();

hope this help someone this only update custom options value

Problem

I have lot of products with custom options, now I have requirement to update only custom options through csv file. so how we can do this programatically?

Original source