我在MySQL表列中有“类” 在项目中是:
print '<td>' .$row["klass"].'</td>';
打印全文。我可以以某种方式打印,直到“(”?
显示:
答案 0 :(得分:1)
您可以使用preg_replace
删除整个paranthesis:
function removeParanthesis($text) {
return preg_replace('/\s*\([^)]*\)/', '', $text);
}
print '<td>'.removeParanthesis($row["klass"]).'</td>';
会给出所需的输出。
答案 1 :(得分:0)
你可以把它做成mysql
select
substring_index(klass,'(',1) as klass
from table_name
所以选择时你可以这样做
{{1}}
答案 2 :(得分:0)
您可以使用explode() function
来完成std::all_of