Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我之前无法添加文本关键字“pdf”'.get_query().'
'.get_query().'
例子 :
$q = simplexml_load_file('http://domain.com/find?q=pdf+'.get_query().'&format=xml');
所以如果 get_query 关键字的结果是:
macbook pro 将是 pdf macbook pro,sim cool 将是 pdf sim cool,鼠标垫将是 pdf 鼠标垫,
而不是在+之后给一个空间,pdf这样它就变成了
+
pdf
$q = simplexml_load_file('http://domain.com/find?q=pdf '.get_query().'&format=xml');