-1
我想創建一個標記系統,所以我想知道如何提取散列的單詞,即#tag,然後將它們插入到數據庫中,可以將我引向toturial或幫助!感謝我如何從字符串中提取單詞並將它們插入到數據庫中?標記
我想創建一個標記系統,所以我想知道如何提取散列的單詞,即#tag,然後將它們插入到數據庫中,可以將我引向toturial或幫助!感謝我如何從字符串中提取單詞並將它們插入到數據庫中?標記
<?php
$string = 'this is a #string with #hash tags #yessir';
preg_match_all('/#([a-z0-9-_]+)/', $string, $matches);
print_r($matches);
// Do your database stuff here...
?>
,這將給你:
Array
(
[0] => Array
(
[0] => #string
[1] => #hash
[2] => #yessir
)
[1] => Array
(
[0] => string
[1] => hash
[2] => yessir
)
)
很好的答案,謝謝你,讓我的生活變得更輕鬆 – getaway 2010-08-29 22:20:48
沒問題,很高興我能幫助! – joshtronic 2010-08-30 00:12:16