想要使用我在Wordpress中的自定义字段选项中获取的参数来查找包含搜索结果的网站。
这是我的代码(没有参数运行,但是如何在URL中使用参数?):
<?php $parameter = get_post_meta($post->ID, 'searchingword', false); ?>
<?php foreach($parameter as $parameter) {
echo file_get_contents_curl('http://www.domain.com/searching.php?search=.$parameter.'); } ?>
答案 0 :(得分:2)
你的语法错了。试试这个:
echo file_get_contents_curl('http://www.domain.com/searching.php?search='. $parameter);
在foreach循环中,您必须使用2个不同的变量:
foreach($parameter as $param) {
echo file_get_contents_curl('http://www.domain.com/searching.php?search='. $param);
...