PHPファイルがあるとしましょうfile1.php
。このようなもの:
<?php
class sqlClass {
public function one { //do something }
?>
次に、他のPHPファイルfile2.php
に、これがあります:
<?php
class encryption_class {
public function two { //do something }
}
クラスの関数からtwo
クラスencryption_class
内の関数を呼び出すにはどうすればよいですか?file2.php
one
file1.php
sqlClass