我有一个文件connect.php。
public static function connect() {
$file= file('data.txt');
$hostname = rtrim($file[1]);
$dbname = rtrim($file[4]);
$username = rtrim($file[7]);
$password = rtrim($file[10]);
mysql_connect($hostname, $username, $password) or DIE('Connection to host isailed, perhaps the service is down!');
mysql_select_db($dbname) or DIE('Database name is not available!');
};
如何在其他.php文件中访问此功能?
connect();
不起作用。
答案 0 :(得分:0)
您需要包含该文件,因此您的php文件可以访问该功能。您可以使用require执行此操作。
<xsl:copy-of select="@*"/>
答案 1 :(得分:0)
那是因为这是不可能的。您必须访问代码才能使其正常工作。如果您希望在另一页上提供此功能,请:
GetCustomAttributes
通过它,您可以在该页面上进行功能调用,它将起作用。
这就是它。