Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The following script is inside the directory named package_1 :

<?php
namespace ashaar;
class Ghazal {
    public function nameIt() {
        echo "Dekh to dil ke jaan se utha hai <br />";
    }
}

and the following script is inside the directory named package_2 :

<?php
namespace package_1\ashaar;
require 'first.php';
$obj = new Ghazal();
$obj->nameIt();

When I run the above script (inside the directory package 2 ) I get an error :

Warning: require(\package_1\first.php): failed to open stream: No such file 
or directory in /opt/lampp/htdocs/package_2/second.php on line 3

Fatal error: require(): Failed opening required '\package_1\first.php'
(include_path='.:/opt/lampp/lib/php') in /opt/lampp/htdocs/package_2/second.php
 on line 3

Why is that ?

share|improve this question
possible duplicate of Php Include() Issues – deceze Feb 18 at 7:38

4 Answers

up vote 1 down vote accepted

first.php

<?php
namespace ashaar;
class Ghazal {
    public function nameIt() {
        echo "Dekh to dil ke jaan se utha hai <br />";
    }
}

second.php

<?php
namespace ashaar;
require_once('../package_1/first.php');
$obj = new Ghazal();
$obj->nameIt();

What made you do package_1\ashaar when you are including first.php that is inside the package package_1.

share|improve this answer

Change the location to:

require '..\package_1\first.php';
share|improve this answer
it doesn't help – saplingPro Feb 18 at 7:40
then your folder structure is not what you have stated. screenshot of the folder tree? – Siddharth Gupta Feb 18 at 7:45

change the location as

include_once("..\package_1\first.php");
share|improve this answer

I think you must use namespaces like that.

first.php...

<?php
namespace package_1\ashaar;
class Ghazal {
    public function nameIt() {
        echo "Dekh to dil ke jaan se utha hai <br />";
    }
}

second.php...

<?php

namespace package_2;
require '../package_1/first.php';
use package_1\ashaar\Ghazal;


$obj = new Ghazal();
$obj->nameIt();

See use keyword which is essential to use code in another namespace.

share|improve this answer
doesn't help... – saplingPro Feb 18 at 8:10
I made changes, now it works. Change use keyword to embed Ghazal also. – kuldeep.kamboj Feb 18 at 8:16
Well down-vote is ok. But at least comment should be given, So answers can be improved. – kuldeep.kamboj Feb 18 at 13:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.