我想調用一組php5變量到一個函數的另一個頁面,但是當我運行代碼時,它正在生成一個頁面錯誤。以下是我的代碼:如何使用函數調用一組PHP變量?
<?php function SocialLinks(){
$blogger_icon = $this->params->get('blogger_icon');
$digg_icon = $this->params->get('digg_icon');
$facebook_icon = $this->params->get('facebook_icon');
$stumble_icon = $this->params->get('stumble_icon');}?>
<?php SocialLinks();//code to call my function in another page ?>
請有人可以告訴我ho去做這件事嗎?
你能分享一下返回的錯誤嗎? – Nirnae
在調用它之前是否包含具有該功能的文件? – Andrius
在我的谷歌瀏覽器中顯示「500 Internal server」錯誤@Nirnae 我在調用它之前包含了該文件。 –