假设我有一个PHP文件file1.php
。像这样:
<?php
class sqlClass {
public function one { //do something }
?>
然后在其他PHP文件file2.php
中,我有这个:
<?php
class encryption_class {
public function two { //do something }
}
如何从two
类{{1}上的函数encryption_class
调用file2.php
内的one
类内的函数file1.php
}}?
答案 0 :(得分:2)
像这样:
<?php
require_once "file2.php";
class sqlClass {
public function one {
//do something
$encript = new encryption_class();
$encript->two();
}
}
答案 1 :(得分:1)
首先在file2
file1
include_once "file2.php";
然后创建对象并调用。
$a = new encryption_class ();
$a->two();