1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
|
<HTML
><HEAD
><TITLE
>require</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.57"><LINK
REL="HOME"
TITLE="PHP Manual"
HREF="manual.html"><LINK
REL="UP"
TITLE="Control Structures"
HREF="control-structures.html"><LINK
REL="PREVIOUS"
TITLE="switch"
HREF="control-structures.switch.html"><LINK
REL="NEXT"
TITLE="include"
HREF="function.include.html"><META
NAME="HTTP_EQUIV"
CONTENT="text/html; charset=ISO-8859-1"></HEAD
><BODY
CLASS="sect1"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP Manual</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="control-structures.switch.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
>Chapter 11. Control Structures</TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.include.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="sect1"
><H1
CLASS="sect1"
><A
NAME="function.require"
><A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
></A
></H1
><P
> The <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
> statement replaces itself with
the specified file, much like the C preprocessor's
<TT
CLASS="literal"
>#include</TT
> works.
</P
><P
> If "URL fopen wrappers" are enabled in PHP (which they are in the
default configuration), you can specify the file to be
<A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>ed using an URL instead of a local
pathname. See <A
HREF="features.remote-files.html"
>Remote
files</A
> and <A
HREF="function.fopen.html"
><B
CLASS="function"
>fopen()</B
></A
> for more information.
</P
><P
> An important note about how this works is that when a file is
<A
HREF="function.include.html"
><B
CLASS="function"
>include()</B
></A
>ed or <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>ed,
parsing drops out of PHP mode and into HTML mode at the beginning
of the target file, and resumes PHP mode again at the end. For
this reason, any code inside the target file which should be
executed as PHP code must be enclosed within <A
HREF="language.basic-syntax.html#language.basic-syntax.phpmode"
>valid PHP start and end
tags</A
>.
</P
><P
> <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
> is not actually a function in PHP;
rather, it is a language construct. It is subject to some
different rules than functions are. For instance,
<A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
> is not subject to any containing
control structures. For another, it does not return any value;
attempting to read a return value from a
<A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
> call results in a parse error.
</P
><P
> Unlike <A
HREF="function.include.html"
><B
CLASS="function"
>include()</B
></A
>, <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>
will <I
CLASS="emphasis"
>always</I
> read in the target file,
<I
CLASS="emphasis"
>even if the line it's on never executes</I
>. If
you want to conditionally include a file, use
<A
HREF="function.include.html"
><B
CLASS="function"
>include()</B
></A
>. The conditional statement won't
affect the <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>. However, if the line on
which the <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
> occurs is not executed,
neither will any of the code in the target file be executed.
</P
><P
> Similarly, looping structures do not affect the behaviour of
<A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>. Although the code contained in the
target file is still subject to the loop, the
<A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
> itself happens only once.
</P
><P
> This means that you can't put a <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>
statement inside of a loop structure and expect it to include the
contents of a different file on each iteration. To do that, use an
<A
HREF="function.include.html"
><B
CLASS="function"
>include()</B
></A
> statement.
<DIV
CLASS="informalexample"
><A
NAME="AEN3610"
></A
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
> require ('header.inc');
</PRE
></TD
></TR
></TABLE
><P
></P
></DIV
>
</P
><P
> When a file is <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>ed, the code it
contains inherits the variable scope of the line on which the
<A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
> occurs. Any variables available at
that line in the calling file will be available within the called
file. If the <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
> occurs inside a
function within the calling file, then all of the code contained
in the called file will behave as though it had been defined
inside that function.
</P
><P
> If the <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>ed file is called via HTTP
using the fopen wrappers, and if the target server interprets the
target file as PHP code, variables may be passed to the
<A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>ed file using an URL request string as
used with HTTP GET. This is not strictly speaking the same thing
as <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>ing the file and having it inherit
the parent file's variable scope; the script is actually being run
on the remote server and the result is then being included into
the local script.
<DIV
CLASS="informalexample"
><A
NAME="AEN3620"
></A
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
> /* This example assumes that someserver is configured to parse .php
* files and not .txt files. Also, 'works' here means that the variables
* $varone and $vartwo are available within the require()ed file. */
/* Won't work; file.txt wasn't handled by someserver. */
require ("http://someserver/file.txt?varone=1&vartwo=2");
/* Won't work; looks for a file named 'file.php?varone=1&vartwo=2'
* on the local filesystem. */
require ("file.php?varone=1&vartwo=2");
/* Works. */
require ("http://someserver/file.php?varone=1&vartwo=2");
$varone = 1;
$vartwo = 2;
require ("file.txt"); /* Works. */
require ("file.php"); /* Works. */
</PRE
></TD
></TR
></TABLE
><P
></P
></DIV
>
</P
><P
> In PHP 3, it is possible to execute a <TT
CLASS="literal"
>return</TT
>
statement inside a <A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>ed file, as long as
that statement occurs in the global scope of the
<A
HREF="function.require.html"
><B
CLASS="function"
>require()</B
></A
>ed file. It may not occur within any
block (meaning inside braces ({}). In PHP 4, however, this ability
has been discontinued. If you need this functionality, see
<A
HREF="function.include.html"
><B
CLASS="function"
>include()</B
></A
>.
</P
><P
> See also <A
HREF="function.include.html"
><B
CLASS="function"
>include()</B
></A
>, <A
HREF="function.require-once.html"
><B
CLASS="function"
>require_once()</B
></A
>,
<A
HREF="function.include-once.html"
><B
CLASS="function"
>include_once()</B
></A
>, <A
HREF="function.readfile.html"
><B
CLASS="function"
>readfile()</B
></A
>,
and <A
HREF="function.virtual.html"
><B
CLASS="function"
>virtual()</B
></A
>.
</P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="control-structures.switch.html"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="manual.html"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.include.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><TT
CLASS="literal"
>switch</TT
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="control-structures.html"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.include.html"
><B
CLASS="function"
>include()</B
></A
></TD
></TR
></TABLE
></DIV
></BODY
></HTML
>
|