从另一个文件获取文本并包含到另一个函数中

时间:2012-01-01 17:03:10

标签: php

我找到了一个在浏览时旋转文本的功能。 然后,当您最后输入以下行时:

 echo spin('{This|Here} is {some|a little bit of} {example|sample} text.');

然后它会给你eg。 “这是一个例子测试。”

现在,我想从另一个文件中提取我想要旋转的文本,以便“{This | Here}是{some | some} of {example | sample} text。”在例如。 spintext.php。我真的无法让它发挥作用。因为例如。以下(以及不同的变体)不起作用:

 $text = include("/home/domainpath/public_html/files/spintext.php"); 
 echo spin('.$text.');

希望有人能指出上述内容有什么不妥。

2 个答案:

答案 0 :(得分:2)

试试这个。

 $text = file_get_contents("/home/domainpath/public_html/files/spintext.php"); 
 echo spin($text);

答案 1 :(得分:0)

在包含文件中使用返回值:

test.php的

$text = "blah blah blah....";
return $text;

然后像这样使用它:

$mytext = include 'test.php';

您可以访问http://php.net/manual/en/function.include.php。检查示例#5 include()和return()语句