我想問如何實(shí)現(xiàn)動(dòng)態(tài)php網(wǎng)頁的發(fā)送
例如我想發(fā)送下面鏈接的內(nèi)容
youjian.php?mail=00000000@qq.com
頁面是根據(jù)mail動(dòng)態(tài)獲取的。
$to = "0000000@qq.com";
$body = file_get_contents('youjian.php?mail='.$to);
系統(tǒng)總是報(bào)出:Message body empty
不能掉動(dòng)態(tài)文件嗎
?