0
votes
2answers
78 views
Why is PHP not including my file when it clearly exists?
Here is the exact problem. I have an autoload function set up with a piece of code that looks like this:
if(file_exists($class_file))
{
include($class_file);
return true;
}
However, when …
1
vote
4answers
50 views
How to include CodeIgniter generated pages?
What would be the easiest way to include a CI file?
Let's say I want to include http://example.com/ci/index.php/mycontroller/ on example.com
example.com doesn't run CI and I can't do …
2
votes
2answers
35 views
PHP: Get PHP’s variables, functions, constants from a php file
Hello All,
Is there a way to get user-defined php functions, variables, constants from a php file?
Following functions are not the best way to do so because they get all decalred
…
0
votes
2answers
50 views
C++ : How to include boost library header in VC++6?
I used this guide to rebuild the boost library in VC++6 under windows XP. But is having problems trying to include the header files. By default, the boost library makes use of point 1 as follows to …
0
votes
1answer
9 views
Include document in joomla with PHP
Hi
I'm very fresh to PHP world.
Trying to do as I think very simple thing(?)- include external file in Joomla template.
<?php include_once('templates/' echo $this->template …
0
votes
1answer
31 views
OpenCV and include files
Hi - has anyone installed OpenCV 2.0 on windows? Does the installation create directories such as "...\opencv\cxcore\include"? How do you link the libraries in Visual C++ 2008 (Express) and also the …
0
votes
6answers
167 views
#include iostream in C?
In C++ we always put the following at the top of the program
#include <iostream>
What about for C?
1
vote
3answers
43 views
How to include specific filename from multiple directories using PHP
Hello,
I'm trying to include specific 'admin view' files from within a folder structure. I'm familiar with include/require or how to recursively include a folder, but all I need to do is include one …
1
vote
2answers
35 views
PHP Catch “Empty” Includes
We have a custom framework that we use, that allows us to include code in to other pages. However, the header for this code is always printed, even if the include code doesn't output anything. Is …
0
votes
5answers
84 views
including .h file from a different application/directory
I have some .h files as follows (on Linux)
Source/Server/connect.h
Source/Server/message.h
...
I am developing another application that needs the two .h files but is in a different directory
…
0
votes
3answers
114 views
include <iostream> C++
Follow up of this question:
When I do include <iostream> .
It happens that it includes many files from /usr/include .A grep "\usr\include" over g++ -E prog.cpp counted to about 1260 entries …
2
votes
10answers
213 views
name collision in C++
Hi all,
While writing some code i came across this issue:
#include <iostream>
class random
{
public:
random(){ std::cout << "yay!! i am called \n" ;}
};
random r1 ;
int main()
{
…
3
votes
3answers
163 views
can two classes see each other using C++?
So I have a class A, where I want to call some class B functions. So I include "b.h". But, in class B, I want to call a class A function. If I include "a.h", it ends up in an infinite loop, right? …
0
votes
2answers
51 views
php won’t include an existing file: permission denied
You will laugh if you read to the end of this :) This is now driving me nuts - can't get php to include an existing file with proper permissions set etc.
I have test.php file and "lib/tools.php" …
3
votes
3answers
1k views
What is the difference between #import and #include in Objective-C?
What are the differences between #import and #include in Objective-C and are there times where you should use one over the other? Is one deprecated?
I was reading the following tutorial: …
