从其他类调用类中的函数

时间:2012-10-21 13:03:44

标签: php class

假设我有一个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 }}?

2 个答案:

答案 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();