Question about Include_once

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default Question about Include_once

    Does file called by "Include_once" stay with the client's session or
    just for operations in the page where it is stated?

    For example, assume I have one file that contains several functions,
    then if use "include_once('functions.php')" on several pages, does the
    server reload the file for every page, or does it know to save it for
    all pages used in the session?

    Al Guest

  2. Similar Questions and Discussions

    1. #37766 [Opn->Fbk]: include_once() adds file more than one time
      ID: 37766 Updated by: tony2001@php.net Reported By: boris_k at iname dot com -Status: Open +Status: ...
    2. include_once() - always included?
      Hi All, Always looking for efficiency, consider the following code: <?php function one($arg){ if ($arg == 1){ include_once(...); do some...
    3. #25381 [Bgs]: include_once failed to recognize identical file
      ID: 25381 User updated by: ulysses at mail dot fitan dot com dot tw Reported By: ulysses at mail dot fitan dot com dot tw...
  3. #2

    Default Re: [PHP] Question about Include_once

    Hello,

    This is a reply to an e-mail that you wrote on Sat, 19 Jul 2003 at
    19:15, lines prefixed by '>' were originally written by you.
    > Does file called by "Include_once" stay with the client's
    session or
    > just for operations in the page where it is stated?
    just for operations in the page where it is stated

    David.

    --
    phpmachine :: The quick and easy to use service providing you with
    professionally developed PHP scripts :: [url]http://www.phpmachine.com/[/url]

    Professional Web Development by David Nicholson
    [url]http://www.djnicholson.com/[/url]

    QuizSender.com - How well do your friends actually know you?
    [url]http://www.quizsender.com/[/url]
    (developed entirely in PHP)
    David Nicholson Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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