0

这是我的情况。假设我有一个名为的 PHP 文件:

myfunctions.php

是否可以使用可用的 PHP 函数在另一个脚本中读取该 PHP 文件 (myfunctions.php) 的内容?

我在读取这个 PHP 文件时使用了以下函数,但没有成功:

file_get_contents()
file()

它只是返回空白。一种可能的成功方法是将这个 PHP 文件作为文本文件读取,但我不知道该怎么做。如果有人有其他方法,请分享。理想情况下,我希望输出是一个数组,这样我想获得的数据将很容易被操纵以供使用。

谢谢。

4

2 回答 2

0

你需要fread。要将其放入数组中,您可能会查看explode

于 2013-01-30T10:25:33.983 回答
0

如果我是你,我会将“myfunctions.php”的扩展名更改为“myfunctions.txt”并使用这些函数

file_get_contents()
file()

但我不知道您是否可以更改文档的名称。

file() - Reads entire file into an array
fgets() - Gets line from file pointer
fread() - Binary-safe file read
readfile() - Outputs a file
file_put_contents() - Write a string to a file
stream_get_contents() - Reads remainder of a stream into a string
stream_context_create() - Creates a stream context
于 2013-01-30T10:29:34.590 回答