dounuo7954 2016-11-18 16:59
浏览 19
已采纳

PHP循环页面的内容,制作并保持更改

Database generated page will be saved as static pages but the url's within the page itself needs to be rewritten. The function is already made.

-> I got an error : implode(): Invalid arguments passed

Goal : the website will be in 3 languages but they all uses the same page index.php. So that's not good enough for google. So static pages will be generated and each language will have his own folder.

While the page is extracted I'll do some url rewrite within the codes of the extracted content. (No not just an Url rewrite for .htaccess. That's not the point at all.) The pages will change name completely and becomes a static page.
I hope this is clear enough. Hope someone find a way, I tried so much I have almost lost hope to accomplish this.

//At the beginning of the page above the HTML tag. 
//Destination for the page and the new name for the page.

$cachefile = "../".trim($_GET['lang'])."/".trim($_GET['page']).".php";

ob_start();

<html>
<body>
...
</body>
</html>

 // At the end of the page
 $content = ob_get_contents();


// here the loop with my function to find an url

$content = ob_get_contents();

$arrcontent = explode(" ",$content); 

$newcontent="";

foreach($arrcontent as $value){

    $value = replaceurl_newurlmenu($value, $pathwebsite, $pathmenu);

    $newcontent .= array($value);    

}

$content =  implode(" ",$newcontent);



// then write everything to a page at a new destination

$fp = fopen($cachefile, 'w');    
fwrite($fp,  $content);    
fclose($fp);    

ob_end_flush();

展开全部

  • 写回答

1条回答 默认 最新

  • douwan7382 2016-11-18 17:07
    关注

    To fix what you have

    $arrcontent = explode(" ",$content); 
    
    $newcontent=array();
    
    foreach($arrcontent as $value){
    
    $value = replaceurl_newurlmenu($value, $pathwebsite, $pathmenu);
    
    $newcontent[] = $value;    
    
    }
    
    $content =  implode(" ",$newcontent);
    

    But I would consider looking at array_walk method too.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部