-3

我的 mysql 表中有一个列,它存储这样的数据,

'fb:username;yt:youtubeUsername;tw:twitterUsername;uk:websiteURL'

所有值都由';'分隔。我想知道的是如何删除这个数组的值(比如用户想删除他们的 YouTube 帐户链接),如何使用explode 函数搜索该字段并从行中干净地删除该值。

希望我没有让你感到困惑。

        $social = explode(";", $arrayquery['socialNetworks']);
        $count = substr_count($arrayquery['socialNetworks'], ';') + 1;

        for($i = 0; $i < $count; $i++) { 
            # Seperate data so we can read it
            $prefix = substr($social[$i], 0, 2);
            $url = strstr($social[$i], ':');
            $url = substr($url, 1); # Remove : from resources

 { my script I need to run in For loop. }
        }

这是我用来从字段中提取数据的脚本。

4

2 回答 2

0

你根本不使用数据库的力量。

最简单的方法是拥有例如这样的表:

id    facebook    youtube            twitter            uk
1     username    youtubeUsername    twitterUsername    http://stackoverflow.com

现在一次只更新一列是一项简单的任务,例如:UPDATE table SET youtube = "" WHERE id = 1;

很简单,但如果您需要更多“种类”的信息,则需要更新表架构。您可以使其更灵活:

表格1

id    `othercolumrelatedtouser`
1     'otherdata'

表 2

id    table1ID    tag         value
1     1           facebook    username
2     1           youtube     youtubeUsername
3     1           twitter     twitterUsername
4     1           url         http://stackoverflow.com

现在您将可以使用类似的东西DELETE FROM Table2 WHERE table1ID = 1 AND tag = "youtube";

于 2013-04-28T16:00:07.867 回答
0

“删除”是什么意思?这是否意味着您要从字符串中删除特定网络,或者您是否只想删除网络的值,而该网络仍将存在于字符串中。无论如何,这是解决这两个问题的方法:

$arrayquery['socialNetworks'] = 'fb:username;yt:youtubeUsername;tw:twitterUsername;uk:websiteURL';
$networks   = explode_networks( $arrayquery['socialNetworks'] );

//Uncomment this print_r to see what $networks looks like
//print_r( $networks );

//here you have the choice:
//To set the value of Twitter account (for example) to an empty string  

$networks['tw'] = '';

//or if you want to remove twitter from the list of networks, remove the above line and uncomment the below one
//unset( $networks['tw'] );

$networks   = implode_networks( $networks );

//See how your string looks like
//echo $networks    



//Functions

function explode_networks( $networks ) {
    $networks = array_filter( explode( ';' , $networks ) );
    $return = array( );
    foreach( $networks as $netw ) {
        list( $nw , $data ) = explode( ':' , $netw );
        $return[$nw] = $data;
    }
    return $return;
}

function implode_networks( $networks ) {
    $return = array( );
    foreach( $networks as $nw => $data ) {
        $return[] = $nw . ':' . $data;
    }
    return implode( ';' , $return );
}

希望能帮助到你。

于 2013-04-28T17:36:06.210 回答