fonksiyonunda sınıf üye işlevi?

0 Cevap php

So i have this class that includes some custom functions named class.php I have another file called config.php that includes

require('engine.class.php');
$engine = new engine;

config.php de gibi çalıştırmak için functions.php gerektirir:

require('functions.php');

i $ motor örneğin kullanan functions.php bir işlevi var:

function login($username, $password){
    return $engine->mysql_query('SELECT `user_id` WH...', 'array);//this is custom function in class.php
}

i config.php reuires sayfayı çalıştırdığınızda ama bazı hata gibi olsun:

Fatal error: Call to a member function mysql_query() on a non-object in ../somedir/functions.php on line 3

0 Cevap