0

我有一个这样的字符串:

$foo = 'height:200px;color:#CCC;font-size:12px';

我可以以某种方式将字符串中的字体大小加倍吗?

4

2 回答 2

2

尝试:

$foo  = 'height:200px;color:#CCC;font-size:12px';
$key  = 'font-size:';
preg_match('/' . $key . '(\d+)/', $foo, $matches);
$size = (int) $matches[1];
$foo  = str_replace($key . $size, $key . ($size * 2), $foo);
于 2013-09-10T09:03:53.040 回答
0

你能用这个代码吗:

<?php

$foo = 'height:200px;color:#CCC;font-size:12px';
$styleArr   = explode(";",$foo);
$newStyleArr    = array();
foreach ($styleArr as $style) {
    $explode_str    = explode(":",$style);
    if($explode_str[0]=="font-size" && count($explode_str)>0) {
        $explode_str[1] = str_replace("px","",$explode_str[1]);
        $explode_str[1]     = ($explode_str[1]*2)."px;";
    }

    $newStyleArr[]  = implode(":",$explode_str);
}

echo implode(";",$newStyleArr);
?>

输出 :

height:200px;color:#CCC;font-size:24px;
于 2013-09-10T09:11:06.793 回答