1

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.phponefile1.phpsqlClass

4

2 に答える 2

2

このような:

<?php

require_once "file2.php"; 

class sqlClass {
    public function one {
        //do something

        $encript = new encryption_class();
        $encript->two(); 

    }
}
于 2012-10-21T13:07:56.337 に答える
1

最初にfile2含めるfile1

include_once "file2.php"; 

次に、オブジェクトを作成して呼び出します。

$a = new encryption_class ();
$a->two();
于 2012-10-21T13:07:11.490 に答える