include_once() - always included?

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

  1. #1

    Default 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 stuff...
    }else{
    do some stuff...
    }
    }
    ?>

    If the above function is called with an argument value of '2', is the
    'include_once' file included?

    Regards,
    Aaron




    Aaron DeLoach Guest

  2. Similar Questions and Discussions

    1. Nothing Was Specified to be included in the library
      I am getting that error when I try to compile my project. The library it is referring to is FlexLib. I have tried everything I can think of but...
    2. #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: ...
    3. 1 px gap below my included tables
      This could really fit in a few areas, but I decided to post it in here. I created this website http://h2mp.com as you can see, right under the...
    4. #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...
    5. 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...
  3. #2

    Default Re: include_once() - always included?

    On Fri, 15 Oct 2004 17:58:33 -0500, "Aaron DeLoach" <aaron@deloachcorp.com>
    wrote:
    >Always looking for efficiency, consider the following code:
    >
    ><?php
    >function one($arg){
    > if ($arg == 1){
    > include_once(...);
    > do some stuff...
    > }else{
    > do some stuff...
    > }
    >}
    >?>
    >
    >If the above function is called with an argument value of '2', is the
    >'include_once' file included?
    No. (What happened when you tried it?)

    --
    Andy Hassall / <andy@andyh.co.uk> / <http://www.andyh.co.uk>
    <http://www.andyhsoftware.co.uk/space> Space: disk usage analysis tool
    Andy Hassall Guest

  4. #3

    Default Re: include_once() - always included?

    ehrm no... please tell me this is a joke :P

    Aaron DeLoach wrote:
    > Hi All,
    >
    > Always looking for efficiency, consider the following code:
    >
    > <?php
    > function one($arg){
    > if ($arg == 1){
    > include_once(...);
    > do some stuff...
    > }else{
    > do some stuff...
    > }
    > }
    > ?>
    >
    > If the above function is called with an argument value of '2', is the
    > 'include_once' file included?
    >
    > Regards,
    > Aaron
    >
    >
    >
    >
    Harrie Verveer 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