我的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. }
}
这是我用来从字段中提取数据的脚本。
答案 0 :(得分: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";
答案 1 :(得分: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 );
}
希望它有所帮助。