PHP » PYTHON |
login |
register |
about
|
PYTHON set_include_path
is this article helpful?
|
Python replacement for PHP's set_include_path
[
edit
| history
]
Long Version:
# sets include path # Usage Example: # Relative Path: set_include_path("../../src", True) # Absolute Path: set_include_path("/home/your/code/src") import os import sys def set_include_path(modsdir, relative = False) : if (relative) : modsdir = os.getcwd() + os.sep + modsdir else : modsdir = os.path.realpath(modsdir) sys.path.insert(1, modsdir) Short Version: # place this directly in your source code: import os,sys sys.path.append(os.path.realpath("/whatever/path/../including/relative")) set_include_path(PHP 4 >= 4.3.0, PHP 5) set_include_path — Sets the include_path configuration option Description
string set_include_path
( string $new_include_path
)
Sets the include_path configuration option for the duration of the script. Return ValuesReturns the old include_path on success or FALSE on failure. Examples
Example #1 set_include_path() example
<?php
Example #2 Adding to the include path Making use of the PATH_SEPARATOR constant, it is possible to extend the include path regardless of the operating system. In this example we add /usr/lib/pear to the end of the existing include_path.
<?php
See Also
|
more
Recently updated
more
Most requested
more
Last requests
|